-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
It looks like using gulp-if is breaking gulp-plumber error catching:
function lessChannel() {
return require('stream-combiner')(
gulpif('**/*.less', less()),
// less(), // is properly handled by upstream plumber
autoprefixer('last 1 version'),
gulp.dest(src.tmp)
);
};
gulp.task('src/styles', function() {
gulp.src(src.styles, {cwd: src.cwd, base: src.cwd})
.pipe(plumber())
.pipe(lessChannel());
});Related gulp-if issue:
robrich/gulp-if#40
Metadata
Metadata
Assignees
Labels
No labels