Dependencies

Last I recall, it is not possible to chain dependencies, correct? That is, can project A depend on B, B depend on C, and, say, use functions that are defined in C within A?

@brianolive it should be possible. Each dependent project attempts to load its dependencies (and theirs load their dependencies, and so on), with a catch to stop circular references

Thanks @Simeon ! I’ll give it a try.