Find all dependencies of modules recursively
Author: Marc Andre Wittorf
buildDepGraph
:: [String] -> [Either String String] -> IO [ModuleDep]
Recursively load module's dependencies |
A module with its dependencies
Constructors:
ModuleDep
:: String -> FilePath -> [String] -> ModuleDep
Fields:
moduleName
:: String
modulePath
:: FilePath
moduleDeps
:: [String]
Recursively load module's dependencies
|