这是一个组合任务,我不知道如何用任务依赖项替换它。
...
gulp.task('watch', function () {
var server = function(){
gulp.run('jasmine');
gulp.run('embed');
};
var client = function(){
gulp.run('scripts');
gulp.run('styles');
gulp.run('copy');
gulp.run('lint');
};
gulp.watch('app/*.js', server);
gulp.watch('spec/nodejs/*.js', server);
gulp.watch('app/backend/*.js', server);
gulp.watch('src/admin/*.js', client);
gulp.watch('src/admin/*.css', client);
gulp.watch('src/geojson-index.json', function(){
gulp.run('copygeojson');
});
});
相应的更改日志 https://github.com/gulpjs/gulp/blob/master/CHANGELOG.md#35 [不赞成gulp.run]
scripts
,但是强制立即运行此任务(无需等到某些脚本文件更改)也很有意义。