Gulps gulp.watch not triggered for new or deleted files? Gulps gulp.watch not triggered for new or deleted files? javascript javascript

Gulps gulp.watch not triggered for new or deleted files?


Edit: Apparently gulp.watch does work with new or deleted files now. It did not when the question was asked.

The rest of my answer still stands: gulp-watch is usually a better solution because it lets you perform specific actions only on the files that have been modified, while gulp.watch only lets you run complete tasks. For a project of a reasonable size, this will quickly become too slow to be useful.


You aren't missing anything. gulp.watch does not work with new or deleted files. It's a simple solution designed for simple projects.

To get file watching that can look for new files, use the gulp-watch plugin, which is much more powerful. Usage looks like this:

var watch = require('gulp-watch');// in a taskwatch({glob: <<glob or array of globs>> })        .pipe( << add per-file tasks here>> );// if you'd rather rerun the whole task, you can do this:watch({glob: <<glob or array of globs>>}, function() {    gulp.start( <<task name>> );});

Personally, I recommend the first option. This allows for much faster, per-file processes. It works great during development with livereload as long as you aren't concatenating any files.

You can wrap up your streams either using my lazypipe library, or simply using a function and stream-combiner like this:

var combine = require('stream-combiner');function scriptsPipeline() {    return combine(coffeeescript(), uglify(), gulp.dest('/path/to/dest'));}watch({glob: 'src/scripts/**/*.js' })        .pipe(scriptsPipeline());

UPDATE October 15, 2014

As pointed out by @pkyeck below, apparently the 1.0 release of gulp-watch changed the format slightly, so the above examples should now be:

var watch = require('gulp-watch');// in a taskwatch(<<glob or array of globs>>)        .pipe( << add per-file tasks here>> );// if you'd rather rerun the whole task, you can do this:watch(<<glob or array of globs>>, function() {    gulp.start( <<task name>> );});

and

var combine = require('stream-combiner');function scriptsPipeline() {    return combine(coffeeescript(), uglify(), gulp.dest('/path/to/dest'));}watch('src/scripts/**/*.js')        .pipe(scriptsPipeline());


Both gulp.watch() and require('gulp-watch')() will trigger for new/deleted files however not if you use absolute directories. In my tests I did not use "./" for relative directories BTW.

Both won't trigger if whole directories are deleted though.

   var watch = require('gulp-watch');   //Wont work for new files until gaze is fixed if using absolute dirs. It  won't trigger if whole directories are deleted though.   //gulp.watch(config.localDeploy.path + '/reports/**/*', function (event) {   //gulp.watch('src/app1/reports/**/*', function (event) {   // console.log('*************************** Event received in gulp.watch');   // console.log(event);   // gulp.start('localDeployApp');   });   //Won't work for new files until gaze is fixed if using absolute dirs. It  won't trigger if whole directories are deleted though. See https://github.com/floatdrop/gulp-watch/issues/104   //watch(config.localDeploy.path + '/reports/**/*', function() {   watch('src/krfs-app/reports/**/*', function(event) {      console.log("watch triggered");      console.log(event);      gulp.start('localDeployApp');   //});


If src is an absolute path (starting with /), your code is not going to detect new or deleted files. However there's still a way:

Instead of:

gulp.watch(src + '/js/**/*.js', ['scripts']);

write:

gulp.watch('js/**/*.js', {cwd: src}, ['scripts']);

and it will work!