我想知道是否可以配置一个监视任务来监视两个不同的文件夹并在每个文件夹上执行不同的任务。例如,每当 /folder1 发生变化时,应执行 task1,每当 /folder2 发生变化时,应执行 task2。
文件夹结构如下:root |-folder1 |-folder2
我想知道是否可以配置一个监视任务来监视两个不同的文件夹并在每个文件夹上执行不同的任务。例如,每当 /folder1 发生变化时,应执行 task1,每当 /folder2 发生变化时,应执行 task2。
文件夹结构如下:root |-folder1 |-folder2
Watch的行为就像一个多任务,所以是的,您可以将其配置为观看不同的文件集并执行不同的任务
watch:{
set1: {
files: [ 'folder1/**/*' ], //<- this watch all files (even sub-folders)
tasks: ['task1']
},
set2: {
files: ['folder2/**/*'],
tasks: ['task2']
}
},
然后你可以运行一个监视任务或两者
grunt.registerTask('watchSet1', ['watch:set1']);
grunt.registerTask('watchSet1And2', ['watch:set1', 'watch:set2']);
尚未测试,但它应该可以工作。
如果您希望监视任务同时运行。RobW在这里有一个很好的解决方案How to run two grunt watch tasks 同时
我花了一些时间找到解决方案,所以这是该解决方案的片段。
在自定义任务中动态编写配置对象是可行的。
grunt.registerTask('watch:test', function() {
// Configuration for watch:test tasks.
var config = {
options: {
interrupt: true
},
unit: {
files: [
'test/unit/**/*.spec.coffee'
],
tasks: ['karma:unit']
},
integration: {
files: [
'test/integration/**/*.rb',
'.tmp/scripts/**/*.js'
],
tasks: ['exec:rspec']
}
};
grunt.config('watch', config);
grunt.task.run('watch');
});
最好且唯一可行的解决方案是:https ://npmjs.org/package/grunt-focus添加此插件,然后:
focus: {
sources: {
include: ['js', 'html', 'css', 'grunt']
},
testu: {
include: ['js', 'html', 'css', 'testu', 'grunt']
},
testi: {
include: ['js', 'html', 'css', 'testu', 'testi', 'grunt']
}
},
watch: {
js: {
files: paths.js,
tasks: ['jshint'],
options: {
livereload: true
}
},
html: {
files: paths.html,
options: {
livereload: true
}
},
css: {
files: paths.css,
tasks: ['csslint'],
options: {
livereload: true
}
},
testu: {
files: ['test/**/*.js', 'test/**/*.css'],
tasks: ['mochaTest'],
options: {}
},
testi: {
files: ['test/**/*.js', 'test/**/*.css'],
tasks: ['exec:cleanTestDB', 'protractor_webdriver', 'protractor'],
options: {}
},
grunt: {
files: ['Gruntfile.js', 'server/config/env/*.js'],
options: {
reload: true
}
}
}
然后你可以使用 focus:sources 或 focus:testu 作为你的方便。
JM。