mysticatea / npm-run-all

A CLI tool to run multiple npm-scripts in parallel or sequential.
MIT License
5.72k stars 240 forks source link

Avoid extra processes when npm-run-all runs npm-run-all #221

Open dobesv opened 2 years ago

dobesv commented 2 years ago

Currently for organization purposes we split various run-p and run-s jobs into different npm scripts that run each other.

An unwanted side effect of this is that there are many intermediate processes being run. It would be nice if npm-run-all would detect cases where the script being run is npm-run-all, run-p, or run-s and handle that internally in the same process.