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

-s shorthand for --silent is missing on the parent npm-run-all binary #185

Closed ELLIOTTCABLE closed 4 years ago

ELLIOTTCABLE commented 4 years ago

At the moment, run-p et al have a -s form of the --silent flag, which is very helpful for (already-long) npm scripts.

Unfortunately, the parent npm-run-all binary only provides --silent, and doesn't recognize -s.

gabrieldrs commented 4 years ago

That's probably because npm-run-all -s is a shorthand for npm-run-all --sequential <tasks> REF

ELLIOTTCABLE commented 4 years ago

Oh, ~Yikes~. Well, that's good to know, then! (Maybe -S, capitalized, would make a good shorthand for --silent, then? :x)