npm-run-all icon indicating copy to clipboard operation
npm-run-all copied to clipboard

Usage of npm-run-all cli params --sequential and --parallel at the same time

Open rcampbel opened this issue 3 years ago • 0 comments

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
      

rcampbel avatar Aug 26 '21 16:08 rcampbel