npm-run-all
npm-run-all copied to clipboard
Usage of npm-run-all cli params --sequential and --parallel at the same time
Few questions about npm-run-all support for --sequential <tasks>
and --parallel <tasks>
.
Does the npm-run-all support running the command with --sequential and --parallel at the same time?
npm-run-all --sequential jobA jobB --parallel jobC jobD
If yes:
- What is the expected behavior?
- Does it support running multiple instances for sequential and parallel, and does order matter?
- EX: Run jobA & jobB in sequential, then run JobC and JobD in parallel, then run JobE and JobD in sequential
npm-run-all --sequential jobA jobB --parallel jobC jobD --sequential jobE jobD
- EX: Run jobA & jobB in sequential, then run JobC and JobD in parallel, then run JobE and JobD in sequential