Skip to content
Open
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: 2 additions & 2 deletions crates/vite_global_cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pub enum Commands {
},

// =========================================================================
// Category C: Local CLI Delegation (stubs for now)
// Category C: Local CLI Delegation (forwarded to the local vite-plus CLI)
// =========================================================================
/// Run the development server
#[command(disable_help_flag = true)]
Expand Down Expand Up @@ -895,7 +895,7 @@ pub async fn run_command_with_options(

Commands::Staged { args } => commands::staged::execute(cwd, &args).await,

// Category C: Local CLI Delegation (stubs)
// Category C: Local CLI Delegation (forwarded to the local vite-plus CLI)
Commands::Dev { args } => {
if help::maybe_print_unified_delegate_help("dev", &args, render_options.show_header) {
return Ok(ExitStatus::default());
Expand Down
4 changes: 2 additions & 2 deletions crates/vite_global_cli/src/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ fn delegated_help_doc(command: &str) -> Option<HelpDoc> {
"Run tasks without dependency ordering (unlimited concurrency by default)",
),
row("--last-details", "Display the detailed summary of the last run"),
row("-h, --help", "Print help (see more with '--help')"),
row("-h, --help", "Print help"),
],
),
section_lines(
Expand Down Expand Up @@ -874,7 +874,7 @@ fn delegated_help_doc(command: &str) -> Option<HelpDoc> {
row("--reverse", "Reverse execution order"),
row("--resume-from <RESUME_FROM>", "Resume from a specific package"),
row("--report-summary", "Save results to vp-exec-summary.json"),
row("-h, --help", "Print help (see more with '--help')"),
row("-h, --help", "Print help"),
],
),
section_lines(
Expand Down
Loading