hyperapp-actionpack
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "hyperapp-actionpack", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "This is a proof of concept of how to build actions in a service container that you can manage globally.", | ||
@@ -8,3 +8,3 @@ "homepage": "https://github.com/mrozbarry/hyperapp-actionPack", | ||
"main": "actionPack.js", | ||
"browser": "actionPack.browser.js", | ||
"browser": "actionPack.bundle.js", | ||
"scripts": { | ||
@@ -25,2 +25,3 @@ "test": "node --test", | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^25.0.7", | ||
"@rollup/plugin-node-resolve": "^15.2.3", | ||
@@ -27,0 +28,0 @@ "rollup": "^4.17.2" |
import { nodeResolve } from '@rollup/plugin-node-resolve'; | ||
import commonjs from '@rollup/plugin-commonjs'; | ||
@@ -6,6 +7,11 @@ export default { | ||
output: { | ||
file: 'actionPack.browser.js', | ||
format: 'amd' | ||
file: 'actionPack.bundle.js', | ||
format: 'esm' | ||
}, | ||
plugins: [nodeResolve()] | ||
plugins: [ | ||
commonjs(), | ||
nodeResolve({ | ||
preferBuiltins: 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
414
17227
3