Releases: open-cli-tools/concurrently
Releases · open-cli-tools/concurrently
v8.0.0
What's Changed
- Breaking change: Drop support for Node.js v12 & add support for Node.js v18 by @paescuj in #342
- Add support for Bun by @jakeboone02 in #406
- Add
--kill-signal
option by @paulsmithkc in #402 - Fixed broken link in the readme by @abstractpoint in #390
New Contributors
- @abstractpoint made their first contribution in #390
- @jakeboone02 made their first contribution in #406
- @paulsmithkc made their first contribution in #402
Full Changelog: v7.6.0...v8.0.0
v7.6.0
What's Changed
- Support percent values in maxProcesses by @lynxtaa in #375
- Enable TypeScript strict mode by @gustavohenke in #374
- update install command to use
--save-dev
by @DetachHead in #376 - Correct wildcard naming as described in README by @paescuj in #385
New Contributors
- @lynxtaa made their first contribution in #375
- @DetachHead made their first contribution in #376
Full Changelog: v7.5.0...v7.6.0
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