summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph (Sheogorath) Kern2018-10-04 20:06:32 +0200
committerGitHub2018-10-04 20:06:32 +0200
commitada5f51694f01a479efbe5e7893cb8249971422f (patch)
treeefefcaaff32a2ffe7ded77a5408f14994aae1a96
parent03a4e3c0c2dab5c525026ea5ea43054fc8c9d709 (diff)
parenta47d91dbd01fbf8ca82eff40d679a9653bc5a287 (diff)
Merge pull request #981 from SISheogorath/fix/devMode
Add development mode for webpack in package.json
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index 6d461225..12172639 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,7 @@
"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 --progress --colors --watch",
+ "dev": "webpack --config webpack.config.js --mode=production --progress --colors --watch",
"build": "webpack --config webpack.production.js --progress --colors --bail",
"postinstall": "bin/heroku",
"start": "node app.js",