Gulp v4无法检测默认任务

时间:2018-09-04 04:11:20

标签: gulp

我同时安装了gulp(v3.9.1)和gulp-v4(v4.0.0-alpha.5)。以下gulpfile.js运行正常。

var gulp = require('gulp');

// Run everything
gulp.task('default', function() {
   console.log("hello");
});

以下是输出:

[23:57:04] Starting 'default'...
hello
[23:57:04] Finished 'default' after 251 μs

但是以下gulpfile.js导致错误:

var gulp = require('gulp-v4');

// Run everything
gulp.task('default', function() {
   console.log("hello");
});

这是错误:

[00:00:29] Task 'default' is not in your gulpfile
[00:00:29] Please check the documentation for proper gulpfile formatting

为什么gulp无法从第二个gulpfile.js中检测到默认任务?

0 个答案:

没有答案