Skip to content

mise tasks info

Usage: mise tasks info [-J --json] <TASK>

[experimental] 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": {}
}

Licensed under the MIT License. Maintained by @jdx and friends.