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

Show failed command on parallel failure #179

Closed aleccool213 closed 5 years ago

aleccool213 commented 5 years ago

Why?

When running npm-run-all without the --sequential option, the default behaviour is to run all commands in parallel. Often on our team we prefer to use the --sequential flag due to it being easier to find out which command failed.

What is the proposed change?

I propose that the npm-run-all command output the command which failed when running in parallel mode. This will make it easer to find out which command failed when running commands with similar output.

E.g.

64803456-cd523300-d55a-11e9-8227-197e832bf92a
aleccool213 commented 5 years ago

Found out you can use the —parallel and -c commands in combination to get this behaviour