Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions run-run/cli/CLI.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- @generated by usage-cli from usage spec -->
# `rr`
- **version**: 1.2.1
- **version**: 1.3.0

- **Usage**: `rr [--about] [--usage] <SUBCOMMAND>`

Expand Down Expand Up @@ -98,6 +98,30 @@ format all the code

check if the underlying tool is working correctly

## `rr test`

- **Usage**: `rr test [--env <ENV>] [args]… <SUBCOMMAND>`

Passthrough to the configured test runner. Forwards every flag and argument (e.g. --project, --watch) — including --help — straight to the tool. Loads .env.test or .env by default. ('rr test doctor' is reserved for the health check.)

### Arguments

#### `[args]…`

arguments forwarded to the test runner

### Flags

#### `--env <ENV>`

load this env file before running (default: .env.test, then .env)

## `rr test doctor`

- **Usage**: `rr test doctor`

check if the underlying tool is working correctly

## `rr pack`

- **Usage**: `rr pack <SUBCOMMAND>`
Expand Down Expand Up @@ -176,7 +200,7 @@ install and configure an @rrlab plugin

#### `<name>`

plugin alias (ts|biome|oxc|tsdown), optionally with @<spec> e.g. biome@pr-226
plugin alias (ts|biome|oxc|tsdown|vitest), optionally with @<spec> e.g. biome@pr-226

### Flags

Expand Down Expand Up @@ -210,6 +234,7 @@ plugin alias to remove
- `biome`
- `oxc`
- `tsdown`
- `vitest`

### Flags

Expand Down
Loading