gabotechs / dep-tree

Tool for helping developers keep their code bases clean and decoupled. It allows visualising a code base complexity using a 3d force-directed graph of files and the dependencies between them.
https://github.com/gabotechs/dep-tree
MIT License
1.5k stars 38 forks source link

Allow passing multiple files instead of just one #65

Closed gabotechs closed 8 months ago

gabotechs commented 8 months ago

Right now we are limited to pass just 1 entrypoint to the tree and entropy command, which is supposed to be the main executable/library file for a project. Some projects might have multiple entrypoints, either because they ship multiple executables or because they are libraries that do not expose everything from a single file.

This would also solve https://github.com/gabotechs/dep-tree/issues/62.

TODO: