do not swallow errors

This commit is contained in:
Florian Dold 2017-07-20 04:16:50 +02:00
parent a8bd05298e
commit 1f8c3af5f9
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -166,9 +166,14 @@ gulp.task("dist-prod", ["compile-prod"], function () {
gulp.task("compile-prod", function (callback) { gulp.task("compile-prod", function (callback) {
let config = require("./webpack.config.js")({prod: true}); let config = require("./webpack.config.js")({prod: true});
webpack(config, function(err, stats) { webpack(config, function(err, stats) {
if(err) { if (err) {
throw new gutil.PluginError("webpack", err); throw new gutil.PluginError("webpack", err);
} }
if (stats.hasErrors() || stats.hasWarnins) {
gutil.log("[webpack]", stats.toString({
colors: true,
}));
}
callback(); callback();
}); });
}); });