Use non-zero exit codes when build fails

This commit is contained in:
Sheogorath 2017-06-03 18:22:37 +02:00
parent 8f4be63df4
commit 8acceb28ed
No known key found for this signature in database
GPG Key ID: 1F05CC3635CDDFFD
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"
},