mise tasks info
- Usage:
mise tasks info [-J --json] <TASK>
- Source code:
src/cli/tasks/info.rs
Get information about a task
Arguments
<TASK>
Name of the task to get information about
Flags
-J --json
Output in JSON format
Examples:
$ mise tasks info
Name: test
Aliases: t
Description: Test the application
Source: ~/src/myproj/mise.toml
$ mise tasks info test --json
{
"name": "test",
"aliases": "t",
"description": "Test the application",
"source": "~/src/myproj/mise.toml",
"depends": [],
"env": {},
"dir": null,
"hide": false,
"raw": false,
"sources": [],
"outputs": [],
"run": [
"echo \"testing!\""
],
"file": null,
"usage_spec": {}
}