File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 19
19
" browser"
20
20
],
21
21
"scripts" : {
22
- "build" : " ./node_modules/.bin/tsc -p tsconfig.json" ,
23
- "build-watch" : " ./node_modules/.bin/tsc -p tsconfig.json -w" ,
24
- "webpack" : " ./node_modules/.bin/webpack --config webpack.config.js" ,
25
- "webpack-watch" : " ./node_modules/.bin/webpack --config webpack.config.js -w" ,
26
- "dev" : " ./node_modules/.bin/concurrently --kill-others \" npm run build-watch\" \" npm run webpack-watch\" " ,
27
- "test" : " ./node_modules/.bin/mocha lib/test/index.js"
22
+ "build" : " npm run build:ts && npm run build:wp" ,
23
+ "dev" : " ./node_modules/.bin/concurrently --kill-others \" npm run dev:ts\" \" npm run dev:wp\" " ,
24
+ "test" : " ./node_modules/.bin/mocha lib/test/index.js" ,
25
+ "build:ts" : " ./node_modules/.bin/tsc -p tsconfig.json" ,
26
+ "build:wp" : " ./node_modules/.bin/webpack --config webpack.config.js" ,
27
+ "dev:ts" : " ./node_modules/.bin/tsc -p tsconfig.json -w" ,
28
+ "dev:wp" : " ./node_modules/.bin/webpack --config webpack.config.js -w"
28
29
},
29
30
"devDependencies" : {
30
31
"@types/chai" : " 4.1.7" ,
You can’t perform that action at this time.
0 commit comments