Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hyperapp-actionpack

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyperapp-actionpack - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

actionPack.bundle.js

5

package.json
{
"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"

12

rollup.config.js
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,
}),
]
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc