Gulp error: The following tasks did not complete: Did you forget to signal async completion?
- 阅读更多 关于 Gulp error: The following tasks did not complete: Did you forget to signal async completion?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have the following gulpfile.js, which I'm executing via the command line "gulp message": var gulp = require('gulp'); gulp.task('message', function() { console.log("HTTP Server Started"); }); I'm getting the following error message: [14:14:41] Using gulpfile ~\Documents\node\first\gulpfile.js [14:14:41] Starting 'message'... HTTP Server Started [14:14:41] The following tasks did not complete: message [14:14:41] Did you forget to signal async completion? I'm using gulp 4 on a Windows 10 system. Here is the output from gulp --version: [14:15