RemoteDepsForModuleSet returns the remote dependencies of the local Modules in the ModuleSet. Sorted by FullName. TODO FUTURE: This needs a LOT of testing.
(moduleSet ModuleSet)
| 43 | // |
| 44 | // TODO FUTURE: This needs a LOT of testing. |
| 45 | func RemoteDepsForModuleSet(moduleSet ModuleSet) ([]RemoteDep, error) { |
| 46 | return RemoteDepsForModules(moduleSet.Modules()) |
| 47 | } |
| 48 | |
| 49 | // RemoteDepsForModules returns the remote dependencies of the local Modules. |
| 50 | // |
searching dependent graphs…