Replies: 1 comment
-
Sounds good to me |
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
-
Describe the user story
When trying to find all the versions of a package the output is not easy to visually scan.
My specific use case was looking at what version of
metro
is used in an expo project.Note that the key information I am looking for is nested, and repeated multiple times.
Describe the solution you'd like
How about inverting the tree structure so it is bottom-up, and maybe some grouping by version number perhaps?
Also, for the command needed:pnpm ls metro --depth=99
, the depth feels like we should have an easier way to insistdepth=infinity
. Maybe a flag...pnpm why
seems to solve this.Describe the drawbacks of your solution
Adds additional complexity that must be maintained.
Describe alternatives you've considered
Create a separate cli tool.
Beta Was this translation helpful? Give feedback.
All reactions