I\'m new Gulp user, and I try simple script to watch compass, but it didn\'t work. But when I just run gulp compass
gulp can compile it. Any ideas? Here my script:<
IN GULP 4.X
You have to pass a function. The customary way of doing this in gulp 4.x is to pass a gulp.series()
invocation with only one task name. This returns a function that only executes the specified task.
gulp.task('watch', function() {
gulp.watch('./assets/scss/*.scss', gulp.series('compass'))
});