From 8acceb28edfcea37eef99cbaf7c93d835425b612 Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Sat, 3 Jun 2017 18:22:37 +0200 Subject: [PATCH] Use non-zero exit codes when build fails --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e38fda..e4a0c7e 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" },