This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
concurrently | devDependencies | major | ^8.2.2 -> ^9.0.0 |
v9.0.1
Full Changelog: https://github.com/open-cli-tools/concurrently/compare/v9.0.0...v9.0.1
v9.0.0
Dropped support for Node.js < 18.0.0. Older Node.js version have reached end-of-life, and certain features require new-ish JS APIs.
The concurrently
and default exports are now the same - #399
It's reasonable to expect that import { concurrently } from 'concurrently'
would work the same as import concurrently from 'concurrently'
, however this has not been the case.
The former used to be an unconfigured version of concurrently, lacking all features that you'd get from the CLI, which was seen as a "footgun". Both are now the same function.
If you'd like to access the unconfigured function, use import { createConcurrently } from 'concurrently'
instead.
--restart-after exponential
. Restarts happen at 2^N
seconds.--pad-prefix
flag - #166, #417, #495
--teardown
flag - #472, #500
node:<script>
commands to node --run <script>
- #475
state
field to Command
- #455
spawn-command
when running in Node 22 - #407, #477, #479, #492
--raw
and --hide
compatible - #394, #486
--help
no longer shows examples due to there being too many.
Refer to https://github.com/open-cli-tools/concurrently/tree/v9.0.0/docs instead, or to the node_modules/concurrently/docs
directory in your project.--passthrough-arguments
- #490
date-fns
with hand-rolled date formatting - #436, #443
This should make installing concurrently faster.Full Changelog: https://github.com/open-cli-tools/concurrently/compare/v8.2.2...v9.0.0
This MR has been generated by Renovate Bot.