nordicmaterial2
9/14/2017 - 10:10 AM

GULP doesn't process new file

Not processing SASS when new file is created while running gulp.watch

Try to remove ./ from the beginning of the watch scope:


gulp.task('default',function(){
    // not ./sass/**/*, remove the preceding "./"  ////
    //////////////////////////////////////////////////
    gulp.watch('sass/**/*.scss',['sass']);
});