gulp-cached
gulp-cached copied to clipboard
Code inject of Browser-sync not work
Hi, I am trying to configure gulp-cached in my streams, but code injection of Browser Sync not works.
This is my code:
gulp.task(config.css.task, function () {
return gulp.src(config.css.source)
.pipe(cache('css'))
.pipe(sass(config.css.plugin.sass))
.pipe(postcss(config.css.plugin.postcss))
.pipe(gulp.dest(config.css.dist))
.pipe(browserSync.stream());
});
Is not compatible with this feature? or do I have a bad configuration?