robin_cli_tool 1.3.0

A CLI tool to run scripts for any project
Documentation
1
2
3
4
5
6
7
8
9
10
{
  "include": ["./.base_robin.json", "./.app_robin.json"],
  "scripts": {
    "run:list": { "cmd": "cargo run -- --list", "desc": "List all robin tasks via the dev build" },
    "run:dev": { "cmd": "cargo run -- --help", "desc": "Run the dev build and print its help" },
    "run:doctor": { "cmd": "cargo run -- doctor", "desc": "Run the environment doctor via the dev build" },
    "run:interactive": { "cmd": "cargo run -- --interactive", "desc": "Open the interactive task picker via the dev build" },
    "run:version": { "cmd": "cargo run -- --version", "desc": "Print the dev build's version" }
  }
}