dlmanning / gulp-sass

SASS plugin for gulp
MIT License
1.56k stars 381 forks source link

Example has minor incompatibility with Gulp 4. #798

Closed alex9000 closed 3 years ago

alex9000 commented 3 years ago

In your basic example you have:

gulp.task('sass:watch', function () { gulp.watch('./sass/*/.scss', ['sass']); });

In Gulp version 4 you have to pass gulp.series('sass') instead of ['sass'], the name of the task

gulp.task('sass:watch', function () { gulp.watch('./scss/*/.scss', gulp.series('sass')); });