npm-run-all
npm-run-all copied to clipboard
A CLI tool to run multiple npm-scripts in parallel or sequential.
From https://github.com/mysticatea/npm-run-all/pull/27#issuecomment-193753301
Hi, thanks for this package. it could be great to be able to group output like [concurrency did](https://github.com/open-cli-tools/concurrently/pull/272). What do you think? Thanks
I recently switched a project from using `npm-run-all` to using `&&` because we found that `npm-run-all` was returning exit code 0 when one of its several sub-tasks running webpack ran...
This replaces the use of the string.prototype.padend dependency with the normal String.padEnd function, removing the need for 3.3Mb of dependencies. This PR fixes https://github.com/mysticatea/npm-run-all/issues/241
The [`string.prototype.padend` dependency](https://github.com/mysticatea/npm-run-all/blob/master/package.json#L40) adds 3.,3 megabytes worth of deeply nesting dependencies (including a somewhat ridiculous 1MB worth of "test.html" in the `object.assign` sub-sub-dependency =) just to add something that's been...
I am running this command in my Mac terminal: ``` joe.bloggs$ yarn run start ``` but I get the output: > yarn run v1.22.15 > $ npm-run-all -s "yarn start:backend"...
I'm supporting some folks using Node resources. At one point I was told "Oh, we need run-s". I installed it and found no binlink. It took me some rooting around...
minimatch v3.0.4 triggering this waring in our vulnerabiilty scans. https://nvd.nist.gov/vuln/detail/CVE-2022-3517#:~:text=A%20vulnerability%20was%20found%20in,in%20a%20Denial%20of%20Service.
if my `package.json` includes such `config` field: ```json "config": { "commitizen": { "path": "./node_modules/cz-customizable" } } ``` If I run npm-run-all script with `pnpm` , It would print Unknown option:...
https://github.com/mysticatea/npm-run-all/blob/bf91f94ce597aa61da37d2e4208ce8c48bc86673/lib/index.js#L51-L56 If we have a variable expansion with `@` or `*`, we are expanding it unconditionally to the provided `args`, also if they are empty (no elements array or empty...