Getting a deprecation warning when running concurrently with Node 22 in Windows:
(node:13352) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
Environment:
OS: Windows 10 build 19045
Node: 22.2.0
Concurrently: 8.2.2
Reproduction:
concurrently "echo foo" "echo bar" // warning
concurrently --help // no warning
Thank you for the awesome project!