You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey there! This tool is very cool, thanks so much for making it.
I have a very large project (522 src namespaces) that is fairly mixed together. I'm hoping to split groups of them up into separate jars with their own deps.edn and builds, but to do that, I need them to be fairly isolated. For example, if I have src/noah/data/*.clj, src/noah/routes/*.clj, src/noah/services/*.clj, src/noah/db.clj, I want to make it so that data is standalone and doesn't rely on anything from services. I could use grep to find the requires, but given the large number of files (especially once we're 3-5 directories deep) and their interconnections, it would be easier to see them visually.
Given that, I'd love to analyze the whole project but then only see the connections of a specified folder/namespace/regex. In the example above, if I specify noah.data, I'd like to see that noah.db is required, and any noah.service.* files are pointed at, but I don't want to follow the noah.service requirements to any other files (such as noah.routes).
Does that make sense?
Thanks so much!
The text was updated successfully, but these errors were encountered:
hey there! This tool is very cool, thanks so much for making it.
I have a very large project (522 src namespaces) that is fairly mixed together. I'm hoping to split groups of them up into separate jars with their own deps.edn and builds, but to do that, I need them to be fairly isolated. For example, if I have
src/noah/data/*.clj
,src/noah/routes/*.clj
,src/noah/services/*.clj
,src/noah/db.clj
, I want to make it so thatdata
is standalone and doesn't rely on anything fromservices
. I could use grep to find the requires, but given the large number of files (especially once we're 3-5 directories deep) and their interconnections, it would be easier to see them visually.Given that, I'd love to analyze the whole project but then only see the connections of a specified folder/namespace/regex. In the example above, if I specify
noah.data
, I'd like to see thatnoah.db
is required, and anynoah.service.*
files are pointed at, but I don't want to follow thenoah.service
requirements to any other files (such asnoah.routes
).Does that make sense?
Thanks so much!
The text was updated successfully, but these errors were encountered: