[RFC] turbo run
(without tasks) and turbo ls
#8811
anthonyshew
announced in
RFC
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
-
The current vs the old |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In Turborepo 2.0.9, we've introduced experimental subcommands for repository discoverability. This is especially important in large monorepos, where many teams work together and it's useful to gain a quick understanding of the Package and Task Graphs.
turbo run
: Print a list of the tasks available to be used withturbo run
.turbo run
command, but with no tasks listed.turbo ls
: Print a list of the packages in the repository.turbo ls <package>
: Print the dependencies of a specific package.Both of these commands work with
--filter
to refine the printed output to your intended subset of your workspace.To help us make sure these tools are providing you with useful information, we appreciate you trying out these commands on your repository and providing your feedback.
How to try
In a repository using
turbo@>2.0.9
Run the commands above.
In a repository using
turbo@<2.0.9
You can avoid upgrading your repository by using
npx
for a one-offturbo
command.We look forward to hearing your feedback on this feature!
Beta Was this translation helpful? Give feedback.
All reactions