Skip to content

Commit ef67fd1

Browse files
branchseerclaude
andcommitted
chore: update vite-task and simplify cache disabled messages
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cd3c964 commit ef67fd1

File tree

9 files changed

+42
-42
lines changed

9 files changed

+42
-42
lines changed

Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ dunce = "1.0.5"
8282
fast-glob = "1.0.0"
8383
flate2 = { version = "=1.1.5", features = ["zlib-rs"] }
8484
form_urlencoded = "1.2.1"
85-
fspy = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "af03f796c717ff8e1e12832ffe823f50e0b300d1" }
85+
fspy = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "261c5676b2085a31d5edf4c5f76c281992ca96f3" }
8686
futures = "0.3.31"
8787
futures-util = "0.3.31"
8888
glob = "0.3.2"
@@ -181,14 +181,14 @@ vfs = "0.12.1"
181181
vite_command = { path = "crates/vite_command" }
182182
vite_error = { path = "crates/vite_error" }
183183
vite_js_runtime = { path = "crates/vite_js_runtime" }
184-
vite_glob = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "af03f796c717ff8e1e12832ffe823f50e0b300d1" }
184+
vite_glob = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "261c5676b2085a31d5edf4c5f76c281992ca96f3" }
185185
vite_install = { path = "crates/vite_install" }
186186
vite_migration = { path = "crates/vite_migration" }
187187
vite_shared = { path = "crates/vite_shared" }
188-
vite_path = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "af03f796c717ff8e1e12832ffe823f50e0b300d1" }
189-
vite_str = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "af03f796c717ff8e1e12832ffe823f50e0b300d1" }
190-
vite_task = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "af03f796c717ff8e1e12832ffe823f50e0b300d1" }
191-
vite_workspace = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "af03f796c717ff8e1e12832ffe823f50e0b300d1" }
188+
vite_path = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "261c5676b2085a31d5edf4c5f76c281992ca96f3" }
189+
vite_str = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "261c5676b2085a31d5edf4c5f76c281992ca96f3" }
190+
vite_task = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "261c5676b2085a31d5edf4c5f76c281992ca96f3" }
191+
vite_workspace = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "261c5676b2085a31d5edf4c5f76c281992ca96f3" }
192192
walkdir = "2.5.0"
193193
wax = "0.6.0"
194194
which = "8.0.0"

packages/cli/snap-tests/auto-install-before-task/snap.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
Already up to date
33

44
Done in <variable>ms using pnpm v<semver>
5-
$ echo hello ⊘ cache disabled: built-in command
5+
$ echo hello ⊘ cache disabled
66
hello
77

88

99
> vp run hello # second run - no pnpm install output (cache hit, silent)
10-
$ echo hello ⊘ cache disabled: built-in command
10+
$ echo hello ⊘ cache disabled
1111
hello
1212

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
> vp run hello 2>&1 | grep 'cache disabled' # cache should be disabled by default for package.json scripts
2-
$ node hello.mjs ⊘ cache disabled: no cache config
2+
$ node hello.mjs ⊘ cache disabled
33

44
> vp run hello 2>&1 | grep 'cache disabled' # second run should also show cache disabled
5-
$ node hello.mjs ⊘ cache disabled: no cache config
5+
$ node hello.mjs ⊘ cache disabled

packages/cli/snap-tests/exit-code/snap.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
> vp run script1 # script1 run, create the cache and should be success
2-
$ echo 'success' ⊘ cache disabled: built-in command
2+
$ echo 'success' ⊘ cache disabled
33
success
44

55

66
> vp run script1 # script1 should hit the updated cache
7-
$ echo 'success' ⊘ cache disabled: built-in command
7+
$ echo 'success' ⊘ cache disabled
88
success
99

1010

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
> vp run build # synthetic build (vp build) should have cache disabled without cacheScripts
2-
$ vp build ⊘ cache disabled: no cache config
2+
$ vp build ⊘ cache disabled
33

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
> vp run dev # synthetic dev (vp dev) should have cache disabled even with cacheScripts
2-
$ vp dev --help ⊘ cache disabled: no cache config
2+
$ vp dev --help ⊘ cache disabled
33

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
> vp run script1 # simple task
2-
$ echo 'hello vite' ⊘ cache disabled: built-in command
2+
$ echo 'hello vite' ⊘ cache disabled
33
hello vite
44

55

66
> vp run script2 # nested task should work
7-
$ echo 'hello vite' ⊘ cache disabled: built-in command
7+
$ echo 'hello vite' ⊘ cache disabled
88
hello vite
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
> # Test that task config is picked up from vite.config.ts
22
> vp run build
3-
$ echo 'build from vite.config.ts' ⊘ cache disabled: built-in command
3+
$ echo 'build from vite.config.ts' ⊘ cache disabled
44
build from vite.config.ts
55

0 commit comments

Comments
 (0)