What is the current best practice for module dependency management?
Say I have a larger project, with many modules and a tree structure of module dependency
How do I go about having the include
and tracking (ala [Revise](https://github.com/timholy/Revise.jl).track
) done automatically (as much as possible) for me?
Possibly even to include
in the correct order and automatically, i.e. starting with the root of the module dependency tree?
Is creating (local) packages out of modules, creating the REQUIRE file and then using Revise the way to go?
I have written code for myself to manage this for me (It does what Revise does and include
’s the files in the correct order, after the user defines)
But I am hoping that this perhaps has a more “professional” solution, as I believe this should be a problem that many face yet I cannot seem to find much on it online
Thanks