mise tasks deps
- Usage:
mise tasks deps [FLAGS] [TASKS]… - Effect: read-only
- Source code:
src/cli/tasks/deps.rs
Display 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.
Arguments
[TASKS]…— Tasks to show dependencies for Can specify multiple tasks by separating with spaces e.g.: mise tasks deps lint test check
Flags
--compact— Collapse repeated dependencies after their first occurrence--dot— Display dependencies in DOT format--hidden— Show hidden tasks-h --help— Print help
Examples
Show dependencies for all tasks
mise tasks depsShow dependencies for the "lint", "test" and "check" tasks
mise tasks deps lint test checkShow dependencies in DOT format
mise tasks deps --dotCollapse repeated dependencies
mise tasks deps --compact