File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " vue-announcer" ,
3
3
"version" : " 1.0.6" ,
4
4
"description" : " A simple way with Vue to announce any information to the screen readers." ,
5
- "main" : " dist/vue-announcer.js" ,
5
+ "main" : " dist/vue-announcer.umd.js" ,
6
+ "module" : " dist/vue-announcer.esm.js" ,
7
+ "unpkg" : " dist/vue-announcer.min.js" ,
6
8
"scripts" : {
7
9
"dev" : " rollup --config rollup.config.dev.js --watch" ,
8
- "dist" : " rollup --config rollup.config.prod.js --environment NODE_ENV:production" ,
10
+ "build" : " npm run build:umd & npm run build:es & npm run build:unpkg" ,
11
+ "build:umd" : " rollup --config rollup.config.prod.js --format umd --file dist/vue-announcer.umd.js" ,
12
+ "build:es" : " rollup --config rollup.config.prod.js --format es --file dist/vue-announcer.esm.js" ,
13
+ "build:unpkg" : " rollup --config rollup.config.prod.js --format iife --file dist/vue-announcer.min.js" ,
9
14
"release" : " standard-version" ,
10
15
"test" : " node_modules/.bin/cypress run" ,
11
16
"test:open" : " node_modules/.bin/cypress open" ,
You can’t perform that action at this time.
0 commit comments