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
2 Answers
Reset to default 8In 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条)