在glob匹配中编辑文件时,以下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 },
gulp.src([
vendor + '/jquery/dist/jquery.min.js',
vendor + '/bootstrap/dist/js/bootstrap.min.js'
]),
gulp.src([
src + '/js/**/*.js'
]).pipe(plugins.uglify())
)
.pipe(plugins.concat(pkg.name + '.min.js'))
.pipe(gulp.dest(dest + '/js/'));
});
gulp.task('watch', ['build'], function () {
plugins.watch({glob: src + '/js/**/*.js'}, function () {
gulp.start('scripts');
});
});
编辑:解决了,这是this issue。以./
开头的全球(这是src
的价值)似乎不适用于ATM。
编辑:显然gulp.watch
现在可以使用新的或删除的文件。当问到这个问题时,它没有。
我的其余部分仍然有效:gulp-watch
通常是一个更好的解决方案,因为它只允许您对已修改的文件执行特定操作,而gulp.watch
只允许您运行完整的任务。对于合理大小的项目,这将很快变得太慢而无法使用。
你没有遗漏任何东西。 gulp.watch
不适用于新文件或已删除文件。这是一个为简单项目设计的简单解决方案。
要查看可以查找新文件的文件,请使用更强大的the gulp-watch
plugin。用法如下:
var watch = require('gulp-watch');
// in a task
watch({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>> );
});
我个人推荐第一个选项。这允许更快的每文件进程。只要你没有连接任何文件,它在开发期间使用livereload很有效。
您可以使用my lazypipe
library或简单地使用函数和stream-combiner
来包装您的流:
var combine = require('stream-combiner');
function scriptsPipeline() {
return combine(coffeeescript(), uglify(), gulp.dest('/path/to/dest'));
}
watch({glob: 'src/scripts/**/*.js' })
.pipe(scriptsPipeline());
更新2014年10月15日
正如下面@pkyeck指出的那样,显然gulp-watch
的1.0版本稍微改变了格式,所以上面的例子现在应该是:
var watch = require('gulp-watch');
// in a task
watch(<<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>> );
});
和
var combine = require('stream-combiner');
function scriptsPipeline() {
return combine(coffeeescript(), uglify(), gulp.dest('/path/to/dest'));
}
watch('src/scripts/**/*.js')
.pipe(scriptsPipeline());
gulp.watch()
和require('gulp-watch')()
都会触发新的/删除的文件,但是如果使用绝对目录则不会。在我的测试中,我没有将"./"
用于相关目录BTW。
如果删除整个目录,则两者都不会触发。
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');
//});
如果src
是绝对路径(从/
开始),则代码不会检测新文件或已删除文件。然而,还有一种方法:
代替:
gulp.watch(src + '/js/**/*.js', ['scripts']);
写:
gulp.watch('js/**/*.js', {cwd: src}, ['scripts']);
它会工作!
Globs必须指定一个单独的基目录,并且不能在glob本身中指定基本位置。
如果你有lib/*.js
,它会在当前工作目录下看,这是process.cwd()
Gulp使用Gaze观看文件,在Gulp API doc中我们看到我们可以将Gaze特定选项传递给watch函数:gulp.watch(glob[, opts], tasks)
现在在Gaze doc中我们可以发现当前工作目录(glob base dir)是cwd
选项。
这引出了我们对alexk的回答:gulp.watch('js/**/*.js', {cwd: src}, ['scripts']);
我知道这是一个较老的问题,但我想我会抛出我提出的解决方案。我找到的gulp插件都没有通知我新的或重命名的文件。所以我最终将单片眼镜包装在便利功能中。
以下是如何使用该函数的示例:
watch({
root: config.src.root,
match: [{
when: 'js/**',
then: gulpStart('js')
}, {
when: '+(scss|css)/**',
then: gulpStart('css')
}, {
when: '+(fonts|img)/**',
then: gulpStart('assets')
}, {
when: '*.+(html|ejs)',
then: gulpStart('html')
}]
});
我应该注意到gulpStart也是我做的一个便利功能。
这是实际的手表模块。
module.exports = function (options) {
var path = require('path'),
monocle = require('monocle'),
minimatch = require('minimatch');
var fullRoot = path.resolve(options.root);
function onFileChange (e) {
var relativePath = path.relative(fullRoot, e.fullPath);
options.match.some(function (match) {
var isMatch = minimatch(relativePath, match.when);
isMatch && match.then();
return isMatch;
});
}
monocle().watchDirectory({
root: options.root,
listener: onFileChange
});
};
很简单,嗯?整个事情可以在我的gulp入门套件上找到:https://github.com/chrisdavies/gulp_starter_kit
重要的是要注意看起来gulp.watch只报告Windows上已更改和删除的文件,但默认情况下在OSX上侦听新文件和已删除文件:
你应该使用'gulp-watch'代替gulp.watch来重新命名/删除文件
var gulpwatch = require('gulp-watch');
var source = './assets',
destination = './dest';
gulp.task('copy-changed-assets', function() {
gulpwatch(source+'/**/*', function(obj){
gulp.src( obj.path, { "base": source})
.pipe(gulp.dest(destination));
});
});