remove --progress from webpack build to see if it prints error
This commit is contained in:
parent
f7db48910c
commit
25aa5c77f1
1 changed files with 3 additions and 3 deletions
|
@ -9,9 +9,9 @@
|
||||||
"lint": "eslint client server --ext .jsx --ext .js",
|
"lint": "eslint client server --ext .jsx --ext .js",
|
||||||
"lint-fix": "eslint client server --ext .jsx --ext .js --fix",
|
"lint-fix": "eslint client server --ext .jsx --ext .js --fix",
|
||||||
"build": "npm run build:client && npm run build:server && npm run build:examples",
|
"build": "npm run build:client && npm run build:server && npm run build:examples",
|
||||||
"build:client": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress",
|
"build:client": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
|
||||||
"build:server": "cross-env NODE_ENV=production webpack --config webpack.config.server.js --progress",
|
"build:server": "cross-env NODE_ENV=production webpack --config webpack.config.server.js",
|
||||||
"build:examples": "cross-env NODE_ENV=production webpack --config webpack.config.examples.js --progress",
|
"build:examples": "cross-env NODE_ENV=production webpack --config webpack.config.examples.js",
|
||||||
"test": "npm run lint",
|
"test": "npm run lint",
|
||||||
"fetch-examples": "node ./server/scripts/fetch-examples.js",
|
"fetch-examples": "node ./server/scripts/fetch-examples.js",
|
||||||
"fetch-examples-gg": "node ./server/scripts/fetch-examples-gg.js",
|
"fetch-examples-gg": "node ./server/scripts/fetch-examples-gg.js",
|
||||||
|
|
Loading…
Reference in a new issue