Mix v1.3.2 Mix.Tasks.Deps.Tree

Prints the dependency tree.

mix deps.tree

If no dependency is given, it uses the tree defined in the mix.exs file.

Command line options

  • --only - the enviroment to show dependencies for

  • --exclude - exclude dependencies which you do not want to see printed.

  • --format - Can be set to one of either:

    • pretty - use Unicode codepoints for formatting the tree. This is the default except on Windows.

    • plain - do not use Unicode codepoints for formatting the tree. This is the default on Windows.

    • dot - produces a DOT graph description of the dependency tree in deps_tree.dot in the current directory. Warning: this will override any previously generated file.

Summary

Functions

Callback implementation for Mix.Task.run/1

Functions

run(args)

Specs

run(OptionParser.argv) :: :ok

Callback implementation for Mix.Task.run/1.