You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gulp as of version 4 runs all tasks asynchronously. It passes to each task a callback function; if that function is not called, the task is assumed to fail.
The current gulpfile.js defines tasks that will fail in current versions of Gulp:
[22:17:41] The following tasks did not complete: coffee
[22:17:41] Did you forget to signal async completion?
The text was updated successfully, but these errors were encountered:
Synchronous tasks are no longer supported. They often led to subtle mistakes that were hard to debug, like forgetting to return your streams from a task.
When you see the "Did you forget to signal async completion?" warning, none of the techniques mentioned above were used. You'll need to use the error-first callback or return a stream, promise, event emitter, child process, or observable to resolve the issue.
Gulp as of version 4 runs all tasks asynchronously. It passes to each task a callback function; if that function is not called, the task is assumed to fail.
The current
gulpfile.js
defines tasks that will fail in current versions of Gulp:The text was updated successfully, but these errors were encountered: