我正在构建一个简单的gulp watch任务,
gulp.task('serve', function () {
console.log('File ' + event.path + ' was ' + event.type + ', running tasks...');
});
gulp.task('default', [
], function () {
gulp.watch([
'./index.js',
'./views/**/*.pug'
], function (event) {
gulp.start('serve');
});
});
我想在event
中传递gulp.start
个对象,然后进入serve
任务。