我怎样才能解决这个错误“下面的任务没有完成:默认情况下,你忘了信号异步完成? “

问题描述 投票:-1回答:2

这是我的gulpfile.js

const gulp = require('gulp');
gulp.task('default', function () {
});

我写gulp在我的终端和应对..

[19:47:02] Using gulpfile D:\DEV64\LearningJS\gulpfile.js

[19:47:02] Starting 'default'...

[19:47:02] The following tasks did not complete: default

[19:47:02] Did you forget to signal async completion?

我能做什么?

javascript node.js gulp
2个回答
1
投票

在咕嘟咕嘟3.X,你并不需要完成信号。但是,从咕嘟咕嘟4.x中你需要做的。

咕嘟咕嘟自动传递的回调函数,你的任务作为第一个参数。你的情况简单的方法是调用回调。

gulp.task('default', function(done) {
  console.log("Started");
  done();
});

欲了解更多信息,您可以检查这个问题了:Gulp error: The following tasks did not complete: Did you forget to signal async completion?


1
投票

这很好地工作对我来说。

gulp.task('default', async  function(){
  console.log("This is default task!");
});

你也可以试试这个。

gulp.task('default', async ()=>
 console.log('This is default task!')
);
© www.soinside.com 2019 - 2024. All rights reserved.