wicg-inert
Advanced tools
Comparing version 2.2.0 to 2.2.1
{ | ||
"name": "wicg-inert", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "A polyfill for the proposed inert API", | ||
"main": "dist/inert.js", | ||
"module": "src/inert.js", | ||
"module": "dist/inert.esm.js", | ||
"scripts": { | ||
@@ -8,0 +8,0 @@ "build": "rollup -c", |
@@ -8,7 +8,19 @@ import {uglify} from 'rollup-plugin-uglify'; | ||
output: { | ||
file: 'dist/inert.esm.js', | ||
format: 'esm', | ||
}, | ||
plugins: [ | ||
babel({ | ||
exclude: 'node_modules/**', | ||
}), | ||
], | ||
}, | ||
{ | ||
input: 'src/inert.js', | ||
output: { | ||
file: 'dist/inert.js', | ||
format: 'umd', | ||
amd: { | ||
id: 'inert' | ||
} | ||
id: 'inert', | ||
}, | ||
}, | ||
@@ -27,3 +39,3 @@ plugins: [ | ||
amd: { | ||
id: 'inert' | ||
id: 'inert', | ||
}, | ||
@@ -30,0 +42,0 @@ sourcemap: true, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
168927
30
2692