Releases: open-cli-tools/concurrently
Releases · open-cli-tools/concurrently
v7.5.0
What's Changed
- Add auto colors functionality by @eliasm307, @paescuj, @gustavohenke in #296
- Fix
onFinish
signature when using exactOptionalPropertyTypes by @Baune8D in #372
Full Changelog: v7.4.0...v7.5.0
v7.4.0
v7.3.0
v7.2.2
v7.2.1
v7.2.0
v7.1.0
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