Gulps gulp.watch是否未触发新文件或已删除文件?
在全局匹配中编辑文件时,以下Gulpjs任务可以正常工作: // watch task. gulp.task('watch', ['build'], function () { gulp.watch(src + '/js/**/*.js', ['scripts']); gulp.watch(src + '/img//**/*.{jpg,jpeg,png,gif}', ['copy:images']); gulp.watch(src + '/less/*.less', ['styles']); gulp.watch(src + '/templates/**/*.{swig,json}', ['html']); }); // build task. gulp.task('build', ['clean'], function() { return gulp.start('copy', 'scripts', 'less', 'htmlmin'); }); 但是,对于新文件或已删除文件,它不起作用(不会触发)。有什么我想念的吗? 编辑:即使使用grunt-watch插件,它似乎也不起作用: gulp.task('scripts', function() { return streamqueue( { objectMode: true }, …