yarn.build
yarn.build copied to clipboard
Run multiple commands sequentially
Is your feature request related to a problem? Please describe.
In a pipeline I have build
, build:docker
, test
, lint
, and upload
.
The order in each of those commands is important, but as one has finished the other could start.
This is a small time saver.
Describe the solution you'd like
yarn build -c lint build build:docker test upload
Run the commands in the order defined.
Print output for each command when that command finishes.