javascript - how can i solve this error 'The following tasks did not complete: default, Did you forget to signal async c

this is my gulpfile.jsconst gulp = require('gulp');gulp.task('default', function (

this is my gulpfile.js

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

I write gulp in my terminal and response is..

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

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

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

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

what can i do?

this is my gulpfile.js

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

I write gulp in my terminal and response is..

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

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

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

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

what can i do?

Share edited Dec 11, 2018 at 12:14 Namkun asked Dec 11, 2018 at 12:04 NamkunNamkun 371 gold badge1 silver badge6 bronze badges 1
  • have you tried logging to the console inside the task, just to see if it is being called? console.log("Something") – Simon Commented Dec 11, 2018 at 12:14
Add a ment  | 

2 Answers 2

Reset to default 8

In Gulp 3.x you didn't need to signal pletion. But from Gulp 4.x you need to do that.

Gulp automatically passes a callback function to your task as its first argument. Simple way in your case would be calling the callback.

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

For more information You can check this question out: Gulp error: The following tasks did not plete: Did you forget to signal async pletion?

This works nicely for me.

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

You can also try this one.

gulp.task('default', async ()=>
 console.log('This is default task!')
);

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743673038a4488102.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信