diff --git a/gulpfile.js b/gulpfile.js index 6d0756d5..8e257762 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -262,8 +262,11 @@ gulp.task("locales", function() { gulp.task("coffee", function() { return gulp.src(paths.coffee) - .pipe(plumber()) .pipe(cache(coffee())) + .on("error", function(err) { + console.log(err.toString()); + this.emit("end"); + }) .pipe(gulp.dest(paths.tmp)); });