diff options
author | Max Wu | 2017-06-04 19:06:09 +0800 |
---|---|---|
committer | GitHub | 2017-06-04 19:06:09 +0800 |
commit | 9b1670381961856a2f398b44273d3b5b6126a9e7 (patch) | |
tree | f111bac44ad7d691d6015ad592ec5b8b6410b9a6 | |
parent | 8f4be63df49d898ca267e5b50f834f191bcfd01b (diff) | |
parent | 8acceb28edfcea37eef99cbaf7c93d835425b612 (diff) |
Merge pull request #478 from SISheogorath/feature/errorExitOnFail
Use non-zero exit codes when build fails
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 7e38fda8..e4a0c7e9 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "test": "npm run-script standard", "standard": "node ./node_modules/standard/bin/cmd.js", "dev": "webpack --config webpack.config.js --progress --colors --watch", - "build": "webpack --config webpack.production.js --progress --colors", + "build": "webpack --config webpack.production.js --progress --colors --bail", "postinstall": "bin/heroku", "start": "node app.js" }, |