Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Gulp Help Reply To: Gulp Help

#210211
Alen
Participant

When you type gulp watch, after did you change Sass file and save, to see if the watch is triggering? Just running the command doesnt do anything.

To trigger Sass on each gulp watch

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