Releases: open-cli-tools/concurrently
Releases · open-cli-tools/concurrently
v7.4.0
- Add shorthand
conc
- #358
- Updated dependencies
rxjs
and date-fns
- #353, #340
New Contributors
v7.3.0
What's Changed
- Export package.json path - #339
v7.2.2
What's Changed
- Update rxjs to version 7.0.0 - #326
- Fix TypeScript not able to resolve types when on Node 16 - #330
New Contributors
v7.2.1
What's Changed
- Fix
--success
command-
syntax when command name has dashes - #324, #325
v7.2.0
- Support passthrough of additional arguments to commands via placeholders - #33, #282, #307
- Add
command-{name|index}
and !command-{name|index}
to --success
- #280, #281, #318
New Contributors
v7.1.0
- Excluding pattern support added, e.g.
concurrently npm:lint:*(!fix)
(#305, #306)
- Fixed programmatic API docs to resemble v7.0.0 changes (#303)
New Contributors
v7.0.0
🎉 🥂 Happy 2022!
Breaking changes
- Dropped support for Node 10. Minimum version is now 12.20.
concurrently()
API now has a different return value. Please refer to the docs.
Functional changes
- Added
--group
flag/option to run process in parallel but print output in sequence - #75, #79, #272
- Codebase converted to TypeScript. Some bugs may arise due to this, but I hope not!
API Changes
- concurrently can now be imported as an ES Module! Just do
import concurrently from 'concurrently'
.
concurrently()
now returns the commands alongside a promise for the result - #209
New Contributors
v6.5.0
- Add support for configuring via environment variables that start with
CONCURRENTLY_
prefix (#289)
- Add
--timings
flag to show when each process started and stopped, and how long they ran for (#291, #295)
v6.4.0
- Add
--hide
flag to hide the output of specified commands (#138, #173)