Is it possible to pass a flag to Gulp to have it run tasks in different ways?
Normally in Gulp tasks look like this: gulp.task(‘my-task’, function() { return gulp.src(options.SCSS_SOURCE) .pipe(sass({style:’nested’})) .pipe(autoprefixer(‘last 10 version’)) .pipe(concat(‘style.css’)) .pipe(gulp.dest(options.SCSS_DEST)); }); Is it possible to … Read more