From 1f8c3af5f9143cecaf977f9396c3c8ee7f909735 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 20 Jul 2017 04:16:50 +0200 Subject: do not swallow errors --- gulpfile.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'gulpfile.js') diff --git a/gulpfile.js b/gulpfile.js index cff034b52..ae3cdee31 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -166,9 +166,14 @@ gulp.task("dist-prod", ["compile-prod"], function () { gulp.task("compile-prod", function (callback) { let config = require("./webpack.config.js")({prod: true}); webpack(config, function(err, stats) { - if(err) { + if (err) { throw new gutil.PluginError("webpack", err); } + if (stats.hasErrors() || stats.hasWarnins) { + gutil.log("[webpack]", stats.toString({ + colors: true, + })); + } callback(); }); }); -- cgit v1.2.3