Skip to content

Instantly share code, notes, and snippets.

@Tmw
Created April 4, 2014 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tmw/9973472 to your computer and use it in GitHub Desktop.
Save Tmw/9973472 to your computer and use it in GitHub Desktop.
Gulpfile that lists changes/renames/removals
var gulp = require('gulp');
gulp.task('default', function(){
var watcher = gulp.watch('*.txt');
watcher.on('change', function(event){
console.log('Something happened: ', event);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment