fix gulp-cache with coffee
parent
ea9d10a65d
commit
5e8ffda0f1
|
@ -262,8 +262,11 @@ gulp.task("locales", function() {
|
||||||
|
|
||||||
gulp.task("coffee", function() {
|
gulp.task("coffee", function() {
|
||||||
return gulp.src(paths.coffee)
|
return gulp.src(paths.coffee)
|
||||||
.pipe(plumber())
|
|
||||||
.pipe(cache(coffee()))
|
.pipe(cache(coffee()))
|
||||||
|
.on("error", function(err) {
|
||||||
|
console.log(err.toString());
|
||||||
|
this.emit("end");
|
||||||
|
})
|
||||||
.pipe(gulp.dest(paths.tmp));
|
.pipe(gulp.dest(paths.tmp));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue