From d9a6b418ffb1d8b23ff0fdda8354e3a562d7b380 Mon Sep 17 00:00:00 2001 From: jos Date: Thu, 7 May 2015 16:47:26 +0200 Subject: [PATCH] Output error.toString() in gulpfile --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 88eb0fc0..636061b9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -84,7 +84,7 @@ gulp.task('bundle-js', ['clean'], function (cb) { if (stats && stats.compilation && stats.compilation.errors) { // output soft errors stats.compilation.errors.forEach(function (err) { - gutil.log(err); + gutil.log(err.toString()); }); if (err || stats.compilation.errors.length > 0) {