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:<
You've neglected to actually call the "watch" task, which is not the same thing as gulp.watch. Your default gulp task should instead look like:
gulp.task('default', function() {
gulp.start('compass');
gulp.start('watch');
});
but it should really just look like:
gulp.task('default', ['compass', 'watch']);