PaulTaykalo / objc-dependency-visualizer

Objective-C and Swift dependency visualizer. It's tool that helps to visualize current state of your project. It's really easy to see how tight your classes are coupled.
MIT License
1.84k stars 98 forks source link

Separate tree building and filtering phases #48

Open PaulTaykalo opened 6 years ago

PaulTaykalo commented 6 years ago

Currently dep viz tries to perform all the things by getting dependencies, filtering items But it's possible that we can use intermediate dependencies file (as .JSON) and perform post filering by another phase. this will help to perform fast filtering of some system libraries and some unneded classes without the need to regenerate the tree again

This also can be done to regenerate inheritance only graph