docs/cli/tasks/deps.md
mise tasks depsmise tasks deps [FLAGS] [TASKS]…src/cli/tasks/deps.rsDisplay a tree visualization of a dependency graph
The graph is built from declared dependencies: depends, depends_post,
and wait_for. Task references inside a run or run_windows array
({ task = "..." } or { tasks = [...] }) are execution steps, not graph
edges, so they do not appear here. Those nested tasks still run, including
their own depends.
[TASKS]… — Tasks to show dependencies for
Can specify multiple tasks by separating with spaces
e.g.: mise tasks deps lint test check--compact — Collapse repeated dependencies after their first occurrence--dot — Display dependencies in DOT format--hidden — Show hidden tasks-h --help — Print helpExamples:
# Show dependencies for all tasks
$ mise tasks deps
# Show dependencies for the "lint", "test" and "check" tasks
$ mise tasks deps lint test check
# Show dependencies in DOT format
$ mise tasks deps --dot
# Collapse repeated dependencies
$ mise tasks deps --compact