docs/cli/tasks/deps.md
mise tasks depsmise tasks deps [FLAGS] [TASKS]…src/cli/tasks/deps.rsDisplay a tree visualization of a dependency graph
[TASKS]…Tasks to show dependencies for Can specify multiple tasks by separating with spaces e.g.: mise tasks deps lint test check
--compactCollapse repeated dependencies after their first occurrence
--dotDisplay dependencies in DOT format
--hiddenShow hidden tasks
Examples:
# 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