|
| 1 | +> vpr -h # should show vp run help |
| 2 | +VITE+ - The Unified Toolchain for the Web |
| 3 | + |
| 4 | +Usage: vp run [OPTIONS] [TASK_SPECIFIER] [ADDITIONAL_ARGS]... |
| 5 | + |
| 6 | +Run tasks. |
| 7 | + |
| 8 | +Arguments: |
| 9 | + [TASK_SPECIFIER] `packageName#taskName` or `taskName`. If omitted, lists all available tasks |
| 10 | + [ADDITIONAL_ARGS]... Additional arguments to pass to the tasks |
| 11 | + |
| 12 | +Options: |
| 13 | + -r, --recursive Select all packages in the workspace |
| 14 | + -t, --transitive Select the current package and its transitive dependencies |
| 15 | + -w, --workspace-root Select the workspace root package |
| 16 | + -F, --filter <FILTERS> Match packages by name, directory, or glob pattern |
| 17 | + --ignore-depends-on Do not run dependencies specified in `dependsOn` fields |
| 18 | + -v, --verbose Show full detailed summary after execution |
| 19 | + --last-details Display the detailed summary of the last run |
| 20 | + -h, --help Print help (see more with '--help') |
| 21 | + |
| 22 | +Filter Patterns: |
| 23 | + --filter <pattern> Select by package name (e.g. foo, @scope/*) |
| 24 | + --filter ./<dir> Select packages under a directory |
| 25 | + --filter {<dir>} Same as ./<dir>, but allows traversal suffixes |
| 26 | + --filter <pattern>... Select package and its dependencies |
| 27 | + --filter ...<pattern> Select package and its dependents |
| 28 | + --filter <pattern>^... Select only the dependencies (exclude the package itself) |
| 29 | + --filter !<pattern> Exclude packages matching the pattern |
| 30 | + |
| 31 | +Documentation: https://viteplus.dev/guide/run |
| 32 | + |
| 33 | + |
1 | 34 | > vpr hello # should fall back to pnpm run when no vite-plus dependency |
2 | 35 |
|
3 | 36 | > command-vpr@<semver> hello <cwd> |
|
0 commit comments