Created
May 28, 2015 19:11
-
-
Save eniuz/34a79ade6ec7bb51b26f to your computer and use it in GitHub Desktop.
log gulp events
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gulp.task('watch-lint', function(){ | |
gulp.watch('./src/**/*.less', function(event){ | |
console.log('watched event %s for event type %s', event.type, event.path); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment