Skip to content

Commit d84fe33

Browse files
committed
fix: use correct two-line clap help format in command-vp-alias snap
Clap switches to two-line format (flag + indented description) when option names are wide enough. The --concurrency-limit flag triggers this. https://claude.ai/code/session_01CG3eDoiYk8sNttduGRdoDj
1 parent 1b6e249 commit d84fe33

1 file changed

Lines changed: 26 additions & 13 deletions

File tree

  • packages/cli/snap-tests/command-vp-alias

packages/cli/snap-tests/command-vp-alias/snap.txt

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,29 @@ Arguments:
3636
Running `vp run` without a task name shows an interactive task selector.
3737

3838
Options:
39-
-r, --recursive Select all packages in the workspace
40-
-t, --transitive Select the current package and its transitive dependencies
41-
-w, --workspace-root Select the workspace root package
42-
-F, --filter <FILTERS> Match packages by name, directory, or glob pattern
43-
--ignore-depends-on Do not run dependencies specified in `dependsOn` fields
44-
-v, --verbose Show full detailed summary after execution
45-
--cache Force caching on for all tasks and scripts
46-
--no-cache Force caching off for all tasks and scripts
47-
--log <LOG> How task output is displayed [default: interleaved] [possible values: interleaved, labeled, grouped]
48-
--concurrency-limit <CONCURRENCY_LIMIT> Maximum number of tasks to run concurrently. Defaults to 4
49-
--parallel Run tasks without dependency ordering. Sets concurrency to unlimited unless `--concurrency-limit` is also specified
50-
--last-details Display the detailed summary of the last run
51-
-h, --help Print help (see more with '--help')
39+
-r, --recursive
40+
Select all packages in the workspace
41+
-t, --transitive
42+
Select the current package and its transitive dependencies
43+
-w, --workspace-root
44+
Select the workspace root package
45+
-F, --filter <FILTERS>
46+
Match packages by name, directory, or glob pattern
47+
--ignore-depends-on
48+
Do not run dependencies specified in `dependsOn` fields
49+
-v, --verbose
50+
Show full detailed summary after execution
51+
--cache
52+
Force caching on for all tasks and scripts
53+
--no-cache
54+
Force caching off for all tasks and scripts
55+
--log <LOG>
56+
How task output is displayed [default: interleaved] [possible values: interleaved, labeled, grouped]
57+
--concurrency-limit <CONCURRENCY_LIMIT>
58+
Maximum number of tasks to run concurrently. Defaults to 4
59+
--parallel
60+
Run tasks without dependency ordering. Sets concurrency to unlimited unless `--concurrency-limit` is also specified
61+
--last-details
62+
Display the detailed summary of the last run
63+
-h, --help
64+
Print help (see more with '--help')

0 commit comments

Comments
 (0)