Mix.Project.deps_paths
You're seeing just the function
deps_paths
, go back to Mix.Project module for more information.
Specs
Returns the full path of all dependencies as a map.
Options
:depth
- only returns dependencies to the depth level, a depth of 1 will only return top-level dependencies:parents
- starts the dependency traversal from the given parents instead of the application root
Examples
Mix.Project.deps_paths()
#=> %{foo: "deps/foo", bar: "custom/path/dep"}