Description
I wrote CommonML because I wanted a way to automatically namespace based on dependencies, instead of by file path.
https://github.com/jordwalke/commonml
Can obuild
do something similar? So if MyProject
has utils.ml
and YourProject
has utils.ml
, any source file in MyProject
can access YourProject.utils
automatically.
CommonML automatically tracks dependencies across projects and recompiles any changes to your dependent projects. It does this by assuming your dependency source code is installed in node_modules
. Basically, I really like the sound of obuild
and I might be able to just replace CommonML
and point people to obuild
if it can automatically build dependent projects (for some customizable definition of dependent - in my case, it means something inside the local ./node_modules
directory).
Activity