Skip to content

Commit ccc5dfe

Browse files
committed
fix: correct input base docs and parallel example
- base is a required field, not defaulting to "package" - use dev instead of lint in --parallel examples https://claude.ai/code/session_01CG3eDoiYk8sNttduGRdoDj
1 parent ebc1d9d commit ccc5dfe

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/config/run.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ tasks: {
213213
}
214214
```
215215

216-
The `base` field controls how the glob pattern is resolved:
217-
- `"package"` (default): relative to the package directory
216+
The `base` field is required and controls how the glob pattern is resolved:
217+
- `"package"`: relative to the package directory
218218
- `"workspace"`: relative to the workspace root
219219

220220
**Disable file tracking** entirely and cache only on command/env changes:

docs/guide/run.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,13 +306,13 @@ The limit can also be set via the `VP_RUN_CONCURRENCY_LIMIT` environment variabl
306306
Use `--parallel` to ignore task dependencies and run all tasks at once with unlimited concurrency:
307307

308308
```bash
309-
vp run -r --parallel lint
309+
vp run -r --parallel dev
310310
```
311311

312312
This is useful when tasks are independent and you want maximum throughput. You can combine `--parallel` with `--concurrency-limit` to run tasks without dependency ordering but still cap the number of concurrent tasks:
313313

314314
```bash
315-
vp run -r --parallel --concurrency-limit 4 lint
315+
vp run -r --parallel --concurrency-limit 4 dev
316316
```
317317

318318
## Additional Arguments

0 commit comments

Comments
 (0)