summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorDavid Mehren2018-10-08 10:05:13 +0200
committerDavid Mehren2018-10-10 22:09:46 +0200
commit9a2dcd40d37c01896deeae0c8059564b4bdd6dc1 (patch)
tree6515b561f393fc9eea6953e8aeaab0df40419ceb /package.json
parentc7478c1694be2b3b880b8d52f9c15d60832a06f8 (diff)
Rename Webpack config to official recommendation
Signed-off-by: David Mehren <dmehren1@gmail.com>
Diffstat (limited to 'package.json')
-rw-r--r--package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json
index 08e39b26..44e22449 100644
--- a/package.json
+++ b/package.json
@@ -8,8 +8,8 @@
"test": "npm run-script standard && npm run-script jsonlint",
"jsonlint": "find . -not -path './node_modules/*' -type f -name '*.json' -o -type f -name '*.json.example' | while read json; do echo $json ; jq . $json; done",
"standard": "node ./node_modules/standard/bin/cmd.js",
- "dev": "webpack --config webpack.config.js --mode=production --progress --colors --watch",
- "build": "webpack --config webpack.production.js --progress --colors --bail",
+ "dev": "webpack --config webpack.dev.js --progress --colors --watch",
+ "build": "webpack --config webpack.prod.js --progress --colors --bail",
"postinstall": "bin/heroku",
"start": "node app.js",
"doctoc": "doctoc --title='# Table of Contents' README.md"