fix(build): only ever run webpack in dev mode (#105)
This commit is contained in:
parent
1a1732407f
commit
494347e009
|
|
@ -23,7 +23,7 @@
|
|||
"doc": "node utils/doclint/cli.js",
|
||||
"coverage": "cross-env COVERAGE=true npm run unit",
|
||||
"tsc": "tsc -p .",
|
||||
"build": "node utils/runWebpack.js --mode='production' && tsc -p .",
|
||||
"build": "node utils/runWebpack.js --mode='development' && tsc -p .",
|
||||
"watch": "node utils/runWebpack.js --mode='development' --watch --silent | tsc -w -p .",
|
||||
"apply-next-version": "node utils/apply_next_version.js",
|
||||
"bundle": "npx browserify -r ./index.js:playwright -o utils/browser/playwright-web.js",
|
||||
|
|
|
|||
Loading…
Reference in a new issue