Skip to content

Commit

Permalink
chore: remove a deprecated webpack flag
Browse files Browse the repository at this point in the history
as webpack-cli starts to complain about those from v4.
  • Loading branch information
pierrebeitz committed Oct 13, 2020
1 parent a8c7ef1 commit 23103dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
},
"scripts": {
"analyzebundle": "NODE_ENV=production webpack --config ./webpack/webpack.analyze.js",
"build:assets": "npm run clean && lingui compile && NODE_ENV=production webpack --colors --config ./webpack/webpack.production.js",
"build:assets": "npm run clean && lingui compile && NODE_ENV=production webpack --config ./webpack/webpack.production.js",
"build:validate": "scripts/validate-build dist/assets/*.js",
"build": "npm run build:assets && npm run build:validate",
"build-release-bump": "./scripts/build-release-bump.sh",
Expand All @@ -193,8 +193,8 @@
"prestart": "npm run util:env:validate",
"pretty-quick": "pretty-quick",
"release": "semantic-release",
"start:testing": "NODE_ENV=testing webpack-dev-server --config ./webpack/webpack.dev.js --hot --progress --colors --content-base ./dist --host 0.0.0.0 --port $npm_package_config_port",
"start": "lingui compile && NODE_ENV=development webpack-dev-server --config ./webpack/webpack.dev.js --hot --progress --colors --content-base ./dist --host 0.0.0.0 --port $npm_package_config_port",
"start:testing": "NODE_ENV=testing webpack-dev-server --config ./webpack/webpack.dev.js --hot --progress --content-base ./dist --host 0.0.0.0 --port $npm_package_config_port",
"start": "lingui compile && NODE_ENV=development webpack-dev-server --config ./webpack/webpack.dev.js --hot --progress --content-base ./dist --host 0.0.0.0 --port $npm_package_config_port",
"test:integration:local": "cypress open",
"test:integration": "./scripts/run-integration-tests",
"test:system": "./scripts/run-system-tests",
Expand Down

0 comments on commit 23103dd

Please sign in to comment.