gulp.start如何传递参数?

时间:2017-10-11 11:15:32

标签: gulp gulp-watch

我正在构建一个简单的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任务。

0 个答案:

没有答案