concurrently
concurrently copied to clipboard
Run commands concurrently. Like `npm run watch-js & npm run watch-less` but better.
#419 touches on being able to run two commands within a single parallel step in series, but is orchestrating something like the [npm-run-all](https://www.npmjs.com/package/npm-run-all) invocation ``` npm-run-all --parallel clean:* --serial build:fa...
As added by Node 22. [Release announcement](https://nodejs.org/en/blog/announcements/v22-release-announce#running-packagejson-scripts). I suggest it to look like `concurrently node:foo node:*`
I'm trying to run a docker container along with a node.js server, and I would like to stop the container when the user stops the node.js server script. ``` "dev":...
Fixes #436 Backwards-compatible because `date-fns` follows Unicode LDML too (well, more or less https://blog.date-fns.org/v2-unicode-tokens/)
MacOS and Linux at least. Sounds like `concurrently` tool reaction on receiving SIGINT is exiting with code 0 (instead of exiting with e.g. code 130 as the best-practice reaction on...
**Description:** I'm usign concurrently for my azure fucntions node.js project. I need to compile my typescript and run the azure functions at the same time. here is my package.json script...
## Regular usage works as expected ```shell bun install concurrently bun concurrently "pwd" "whoami" # produces: [0] /c/dev [1] loki-sff\loki [1] whoami exited with code 0 [0] pwd exited with...
4.1.0 This is my output. All the processes are exiting with 0 or SIGTERM. But the final exit code is non-zero. ``` [test ] npm run test:docker:sleep exited with code...
Description: switching from yargs to commander would reduce dependencies. commander has 0, yargs has 16 Every downstream dependency adds work as all of them need updates and all of them...
I have tried: ``` bash concurrently --kill-others "npm run build:watch" "npm run start:pm2" -r --hide "0" # OR concurrently --kill-others "npm run build:watch" "npm run start:pm2" -r --hide 0 ```...