We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are some scripts on a monorepo that can run in parallel to speed up the command execution.
It would be useful to integrate the --parallel flag as implemented in lerna.
--parallel
lerna
example:
npm run lint --parallel --workspaces
runs the echo script for each project workspace.
echo
The result would be:
The text was updated successfully, but these errors were encountered:
(This should be discussed in the rfcs repo instead of here)
There’s a lot of complexity around this, including how to interleave and/or prefix output.
Sorry, something went wrong.
Agreed. But that's a good idea to flesh out @Eomm Perhaps we could close this?
Yes, I found this issue on that repo: npm/rfcs#190 that fits a bit
I will continue the discussion there
Thanks
No branches or pull requests
There are some scripts on a monorepo that can run in parallel to speed up the command execution.
It would be useful to integrate the
--parallel
flag as implemented inlerna
.example:
runs the
echo
script for each project workspace.The result would be:
The text was updated successfully, but these errors were encountered: