Merge pull request #478 from SISheogorath/feature/errorExitOnFail

Use non-zero exit codes when build fails
This commit is contained in:
Max Wu 2017-06-04 19:06:09 +08:00 committed by GitHub
commit 9b16703819
1 changed files with 1 additions and 1 deletions

View File

@ -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"
},