Skip to content

Instantly share code, notes, and snippets.

@eniuz
Created May 28, 2015 19:11
Show Gist options
  • Save eniuz/34a79ade6ec7bb51b26f to your computer and use it in GitHub Desktop.
Save eniuz/34a79ade6ec7bb51b26f to your computer and use it in GitHub Desktop.
log gulp events
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