Mix.Project.deps_scms
You're seeing just the function
deps_scms
, go back to Mix.Project module for more information.
Specs
Returns the SCMs of all dependencies as a map.
See Mix.SCM
module documentation to learn more about SCMs.
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_scms()
#=> %{foo: Mix.SCM.Path, bar: Mix.SCM.Git}