You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: rename ParsedCommand to Command and make resolved types internal
- Rename `ParsedCommand` → `Command` and `ParsedRunCommand` → `RunCommand` as the public API types
- Rename old `Command` → `ResolvedCommand` and old `RunCommand` → `ResolvedRunCommand` as crate-internal types
- `Session::main` and `HandledCommand::ViteTaskCommand` now accept `Command` directly (no `.into_command()` needed)
- Fix summary message: `--verbose` → `--last-details`
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: crates/vite_task_bin/tests/e2e_snapshots/fixtures/cache-miss-command-change/snapshots/cache miss command change.snap
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ $ print bar
10
10
bar
11
11
12
12
---
13
-
[vprun] 0/2cachehit (0%). (Run`vp run --verbose`forfulldetails)
13
+
[vprun] 0/2cachehit (0%). (Run`vp run --last-details`forfulldetails)
Copy file name to clipboardExpand all lines: crates/vite_task_bin/tests/e2e_snapshots/fixtures/exit-codes/snapshots/multiple task failures returns exit code 1.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,4 +8,4 @@ expression: e2e_outputs
8
8
~/packages/pkg-b$node-e"process.exit(7)"
9
9
10
10
---
11
-
[vprun] 0/2cachehit (0%), 2failed. (Run`vp run --verbose`forfulldetails)
11
+
[vprun] 0/2cachehit (0%), 2failed. (Run`vp run --last-details`forfulldetails)
Copy file name to clipboardExpand all lines: crates/vite_task_bin/tests/e2e_snapshots/fixtures/stdin-inheritance/snapshots/multiple tasks get null stdin.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,4 +8,4 @@ expression: e2e_outputs
8
8
$read-stdin ⊘ cachedisabled: nocacheconfig
9
9
10
10
---
11
-
[vprun] 0/2cachehit (0%). (Run`vp run --verbose`forfulldetails)
11
+
[vprun] 0/2cachehit (0%). (Run`vp run --last-details`forfulldetails)
Copy file name to clipboardExpand all lines: crates/vite_task_bin/tests/e2e_snapshots/fixtures/stdio-detection/snapshots/multiple tasks, cache disabled.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,4 +14,4 @@ stdout:not-tty
14
14
stderr:not-tty
15
15
16
16
---
17
-
[vprun] 0/2cachehit (0%). (Run`vp run --verbose`forfulldetails)
17
+
[vprun] 0/2cachehit (0%). (Run`vp run --last-details`forfulldetails)
0 commit comments