-
I have a build script that uses gulp to compile js/css. After updating to Gulp 5, compile fails. I'm guessing I need to refactor the gulpfile somehow (?), but I'm having difficulty using the JavaScript error to chase down a solution. Please let me know if I can post any additional details. Thank you for any help you may provide. Running
From package.json:
Contents of gulpfile.js:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You shouldn't need to use pump at all anymore, just simple .pipe and return the stream from each task. The Stats.set issue is a node 22 bug that was patched, update your node version to latest. |
Beta Was this translation helpful? Give feedback.
You shouldn't need to use pump at all anymore, just simple .pipe and return the stream from each task.
The Stats.set issue is a node 22 bug that was patched, update your node version to latest.