File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 15
15
"watch" : " watch 'npm run build' src test" ,
16
16
"test" : " babel-node --presets env test/index.js | tspec" ,
17
17
"prebuild" : " npm run check -s && npm run clean -s && mkdirp dist" ,
18
- "build" : " npm run rollup-esm -s && npm run rollup-umd -s && npm run babel -s" ,
19
- "rollup-esm" : " rollup src/index.js --output.format esm --name AsyncComputed --output.file dist/vue-async-computed.esm.js" ,
18
+ "build" : " npm run rollup -s && npm run babel -s" ,
19
+ "rollup-esm" : " rollup src/index.js --output.format esm --name AsyncComputed --output.file dist/vue-async-computed.esm.esnext. js" ,
20
20
"rollup-umd" : " rollup src/index.js --output.format umd --name AsyncComputed --output.file dist/vue-async-computed.esnext.js" ,
21
- "babel" : " babel --optional runtime dist/vue-async-computed.esnext.js --out-file dist/vue-async-computed.js" ,
21
+ "rollup" : " npm run rollup-umd -s && npm run rollup-esm -s" ,
22
+ "babel-umd" : " babel --optional runtime dist/vue-async-computed.esnext.js --out-file dist/vue-async-computed.js" ,
23
+ "babel-esm" : " babel --optional runtime dist/vue-async-computed.esm.esnext.js --out-file dist/vue-async-computed.esm.js" ,
24
+ "babel" : " npm run babel-umd -s && npm run babel-esm -s" ,
22
25
"postbuild" : " npm run test -s" ,
23
26
"coverage" : " node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover test/index.js" ,
24
27
"coveralls" : " npm run coverage -s && coveralls < coverage/lcov.info" ,
You can’t perform that action at this time.
0 commit comments