-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
[Feature] topological from root #2046
Comments
You're most likely after #1986, which you can install using
|
these do nothing
|
|
yeah, that works, a bit non obvious though, documentation examples should probably be added. |
PRs are welcome :) |
I have a similar issue. I'm looking to transition away from using lerna, but I'm currently relying on the
I can currently emulate this somewhat using the yarn workspace project-web workspaces foreach --recursive --verbose --topological-dev run build This does not work in the cases where I use wildcard/glob to target multiple projects and all their common dependencies. yarn workspaces foreach --include project-* workspaces foreach --recursive --verbose --topological-dev run build |
That seems like a bug, can you open a new issue about that? I'll close this one since |
so my problem is that I have multiple applications in my workspaces, I don't necessarily want to build all of them and their full deps all the time. I tried
yarn workspaces foreach --topological --include myworkspace run build
but that only builtmyworkspace
what I need is to be able to build myworkspace and all of its dependencies in topological order.The text was updated successfully, but these errors were encountered: