Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions crates/vite_global_cli/src/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,10 @@ fn delegated_help_doc(command: &str) -> Option<HelpDoc> {
"-F, --filter <FILTERS>",
"Match packages by name, directory, or glob pattern",
),
row(
"--fail-if-no-match",
"Exit with a non-zero status if a filter matches no packages",
),
row("-c, --shell-mode", "Execute the command within a shell environment"),
row("--parallel", "Run concurrently without topological ordering"),
row("--reverse", "Reverse execution order"),
Expand Down
1 change: 1 addition & 0 deletions packages/cli/snap-tests-global/command-exec/snap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Options:
-t, --transitive Select the current package and its transitive dependencies
-w, --workspace-root Select the workspace root package
-F, --filter <FILTERS> Match packages by name, directory, or glob pattern
--fail-if-no-match Exit with a non-zero status if a filter matches no packages
-c, --shell-mode Execute the command within a shell environment
--parallel Run concurrently without topological ordering
--reverse Reverse execution order
Expand Down
Loading