From ef470ff0a649327e89b4acb6d1062d53cc6b5bfd Mon Sep 17 00:00:00 2001 From: jos Date: Wed, 15 Apr 2015 11:18:02 +0200 Subject: [PATCH] Beep on error --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index f6cb0a80..96d51077 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -77,7 +77,10 @@ gulp.task('bundle-js', ['clean'], function (cb) { bannerPlugin.banner = createBanner(); compiler.run(function (err, stats) { - if (err) gutil.log(err.toString()); + if (err) { + gutil.log(err.toString()); + gutil.beep(); // TODO: this does not work on my system + } cb(); }); });