-
-
Notifications
You must be signed in to change notification settings - Fork 489
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
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 request: View parent references for a given module #41
Comments
Great idea! It might be possible to extract this information the webpack stats Would those details present in the |
@valscion yes that's exactly it. Imagine some ui like, hover of specific module and says: Included from:
etc Which can be expanded in the ui somehow that we can drill the whole graph path. If you expand and there is a linear list, it expands all the children. If there is a node that was pulled from more than 1 module, it stops expanding at that point. |
That would be nice. It also sounds like a use case for a separate reporter UI, if we'll get #32 done at some point :). I don't think we're able to do the reporter changes ourselves easily here, as the treemap reporter we're using is not controlled by us, if I've understood correctly. |
I would already be happy if I could hover over a module and the consumers were colored one way, and the deps another way. Maybe that is easier to achieve… |
I fear that we can't do much with the current treemap visualization, as it seems to be a demo version of some commercial code. We only have the minified/obfuscated treemap code available. |
Having it would be awesome! Wouldn't it be possible to just reflect the Thanks for this amazing tool! |
Hopefully once I've got #97 figured out, we could have user-land implementations of this :). Right now implementing this faces same problems as #85 (comment)
|
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Issue description
I love this plugin; this is an absolutely awesome way to understand the contents of a bundle, but once we see the things making our bundle huge, we end up asking how it even got there. A lot of times, especially in large projects, it isn't obvious.
It would be AWESOME to be able to click on a module box and somehow get a list of other modules that reference said thing. Then those things could be expanded to see things that reference them.
This would definitely help in knowing which require statements needs to be translated into "ensures" so that they can be deferred.
The text was updated successfully, but these errors were encountered: