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
Vite reports its inputs/outputs/envs to the `vp` runner via
`@voidzero-dev/vite-task-client`, so `vp build` no longer needs a
hand-synthesized cache config.
- Bump vite-task git deps to 6e634c65 (runner-aware IPC server/client +
embedded napi addon); regenerate the napi binding (RunnerClient/load) and
run-config.ts.
- Point the vite behind vp build/vp dev to latest vitejs/vite (c13a37b53),
which carries the vite-task-client integration.
- Bundle @voidzero-dev/vite-task-client into core: vite lists it external via
its declared deps; it is a tiny pure-JS wrapper that loads the napi addon by
absolute path from VP_RUN_NODE_CLIENT_PATH (no-op when absent), so inlining
it avoids a separate runtime dependency.
- Remove vp build's synthetic cache config (env: [VITE_*], manual input
excludes). All-None EnabledCacheConfig keeps caching enabled with auto
input/output inference (output restoration); vp dev stays disabled.
- Snap tests: vp-build-auto-output-restoration, vp-build-auto-tracked-env.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: packages/cli/snap-tests/plain-terminal-ui-nested/snap.txt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,17 +8,17 @@ Found 0 warnings and 0 errors.
8
8
Finished in <variable>ms on 3 files with <variable> rules using <variable> threads.
9
9
10
10
---
11
-
vp run: 0/2 cache hit (0%). root-package#hello (and 1 more) not cached because they modified their inputs. (Run `vp run --last-details` for full details)
11
+
vp run: 0/2 cache hit (0%). (Run `vp run --last-details` for full details)
12
12
13
13
> echo 'console.log(123)' > a.ts
14
14
> vp run hello # report cache status from the inner runner
15
-
$ vp lint ./src
15
+
$ vp lint ./src ◉ cache hit, replaying
16
16
Found 0 warnings and 0 errors.
17
17
Finished in <variable>ms on 1 file with <variable> rules using <variable> threads.
Finished in <variable>ms on 3 files with <variable> rules using <variable> threads.
22
22
23
23
---
24
-
vp run: 0/2 cache hit (0%). root-package#hello (and 1 more) not cached because they modified their inputs. (Run `vp run --last-details` for full details)
24
+
vp run: 1/2 cache hit (50%), <variable>ms saved. (Run `vp run --last-details` for full details)
0 commit comments