-
Notifications
You must be signed in to change notification settings - Fork 33
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
--why shows first level/depth dependents #26
Comments
Thanks @roymiloh, this is a cool idea! There is a small UX problem that needs to be solved, some packages are being downloaded because multiple packages depend on them, which means that the output would be a bit harder to present. We could create some interactive mode that will let the user to explore and expand dependency trees dynamically. If there is a nice way to preset the whole tree statically that could be also nice. I'm open for ideas and PRs |
If I understand correctly, it should behave the same as For example:
compare to
|
The problem with the |
Have not tested it. So seems like qnm should take both of the worlds.. |
You're right, finding good ways to show the full tree would give a lot of value. |
Say I have the following graph:
a -> b -> c -> d
(a
depends onb
and so on).When I do
qnm --why d
, I'm gettingc
, which is fine - but I'd like to get the entire path until the direct dependency itself in some manner.The text was updated successfully, but these errors were encountered: