We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1857181 commit 5dacf74Copy full SHA for 5dacf74
package.json
@@ -19,9 +19,9 @@
19
"build:es": "cross-env NODE_ENV=es rollup -c -o es/ng-redux.js",
20
"build:umd": "cross-env NODE_ENV=development rollup -c -o dist/ng-redux.js",
21
"build:umd:min": "cross-env NODE_ENV=production rollup -c -o dist/ng-redux.min.js",
22
- "build": "$npm_execpath run build:commonjs && $npm_execpath run build:es && $npm_execpath run build:umd && $npm_execpath run build:umd:min",
+ "build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
23
"test": "NODE_ENV=test mocha --compilers js:babel-register --recursive",
24
- "prepublish": "$npm_execpath run clean && $npm_execpath test && $npm_execpath run build"
+ "prepublish": "npm run clean && npm test && npm run build"
25
},
26
"repository": {
27
"type": "git",
0 commit comments