Skip to content

Releases: open-cli-tools/concurrently

v5.0.1

09 Dec 21:28
Compare
Choose a tag to compare

v5.0.0

07 Oct 02:34
Compare
Choose a tag to compare

Breaking changes

Other changes

  • Kill child processes on SIGHUP (#193, #195)

v4.1.2

16 Aug 23:47
Compare
Choose a tag to compare
  • Don't strip quotes if they are impaired (#118, #194)

v4.1.1

25 Jun 20:33
Compare
Choose a tag to compare
  • bin: pass --prefix-length argument through (#189)

v4.1.0

18 Nov 23:47
Compare
Choose a tag to compare
  • Add yarn support (#171 -- big thanks to @igrayson!)
  • bin: fix concurrently --version
  • docs: clarify API's successCondition option (#176)

v4.0.1

26 Aug 15:34
Compare
Choose a tag to compare
  • Make success condition respect exiting order (as per docs), instead of command spec order

v4.0.0

24 Aug 20:16
Compare
Choose a tag to compare

More than anything, v4 is just a big refactor to allow changes to be made faster and more reliably.
It does feature some small breaking changes, and maybe even fixes some longstanding bugs.

Breaking changes

  • The CLI option --allow-restarts is no more.
    Instead, just set --restart-tries to something greater than 0.
  • Input handling is now opt-in via --handle-input flag. (#147)
    It does come with some specific input parsing that would make it difficult for you to use it with some tools.
  • Setting prefix to none will now actually not prefix commands' outputs.
    Previously, it would prefix with [] .
  • SIGINTs/Ctrl+C will now be handled gracefully. (#150)
    No more exiting with code 1 or tweaking --success flag.

No more null exit codes (#133)

That's a pretty bad bug that existed till now. You won't see a log like this anymore:

[1] npm run lint-watch exited with code null

What you will see going forward is the actual exit signal:

[1] npm run lint-watch exited with code SIGTERM

For Windows users, this will invariably still be exit code 1.

concurrently finally gets a shiny ✨ programmatic API!

Closes #101, #112. Maybe even #103.

const concurrently = require('concurrently');
await concurrently([
	'npm:watch-*',
	{ name: 'server', command: 'nodemon' }
], {
  prefix: 'name',
  killOthers: ['failure'],
  restartTries: 3
});

Check the docs here for some info on how to use it.

3.6.1

24 Jul 13:28
Compare
Choose a tag to compare
  • Fix inability to change the prefix to a template like {time}-{pid} (#152)

3.6.0

19 Jun 12:38
Compare
Choose a tag to compare
  • Expand npm: prefix to npm run (#126)
  • Support wildcard expansion for npm:something-*/npm:*-like commands (#140)
  • Handle stdin (#121, #128)
  • Upgrade own chalk version (#146)

BIG thanks to @pgraham for contributing with the most important changes of this version!

3.5.1

21 Nov 01:06
Compare
Choose a tag to compare
  • Fix stdout when lines are cleared (#2, #70, #85)