Browse Source

Beep on error

flowchartTest
jos 9 years ago
parent
commit
ef470ff0a6
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      gulpfile.js

+ 4
- 1
gulpfile.js View File

@ -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();
});
});

Loading…
Cancel
Save