Skip to content

Commit cbf21ca

Browse files
authored
chore: bump vite-task to 4bbcba17 (#759)
## Summary - Bumps `vite-task` dependency from `c77d1421` to `4bbcba17` - Includes cleanup of outdated docs/code and hiding empty fuzzy match suggestions - Fixes stale Cargo.lock that caused CI snapshot diff failures ## Test plan - [x] `cargo check --all-targets --all-features` passes locally - [ ] CI passes on all platforms https://claude.ai/code/session_0139LsSbe67hcD8NKKaK6Y8U
1 parent 3a642b6 commit cbf21ca

3 files changed

Lines changed: 30 additions & 26 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,12 @@ jobs:
382382
- name: Run CLI snapshot tests
383383
run: |
384384
RUST_BACKTRACE=1 pnpm test
385-
git diff --exit-code
385+
if ! git diff --exit-code; then
386+
echo "::error::Snapshot diff detected. Run 'pnpm -F vite-plus snap-test' locally and commit the updated snap.txt files."
387+
git diff --stat
388+
git diff
389+
exit 1
390+
fi
386391
387392
# Upgrade tests (merged from separate job to avoid duplicate build)
388393
- name: Test upgrade (bash)

Cargo.lock

Lines changed: 18 additions & 19 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
@@ -84,7 +84,7 @@ dunce = "1.0.5"
8484
fast-glob = "1.0.0"
8585
flate2 = { version = "=1.1.9", features = ["zlib-rs"] }
8686
form_urlencoded = "1.2.1"
87-
fspy = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "c77d1421c356eb8d8b5b0d26415e01ce3294fbf6" }
87+
fspy = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "4bbcba1733a4cd3816beac9a69ddd6f67834e49e" }
8888
futures = "0.3.31"
8989
futures-util = "0.3.31"
9090
glob = "0.3.2"
@@ -183,14 +183,14 @@ vfs = "0.12.1"
183183
vite_command = { path = "crates/vite_command" }
184184
vite_error = { path = "crates/vite_error" }
185185
vite_js_runtime = { path = "crates/vite_js_runtime" }
186-
vite_glob = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "c77d1421c356eb8d8b5b0d26415e01ce3294fbf6" }
186+
vite_glob = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "4bbcba1733a4cd3816beac9a69ddd6f67834e49e" }
187187
vite_install = { path = "crates/vite_install" }
188188
vite_migration = { path = "crates/vite_migration" }
189189
vite_shared = { path = "crates/vite_shared" }
190-
vite_path = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "c77d1421c356eb8d8b5b0d26415e01ce3294fbf6" }
191-
vite_str = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "c77d1421c356eb8d8b5b0d26415e01ce3294fbf6" }
192-
vite_task = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "c77d1421c356eb8d8b5b0d26415e01ce3294fbf6" }
193-
vite_workspace = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "c77d1421c356eb8d8b5b0d26415e01ce3294fbf6" }
190+
vite_path = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "4bbcba1733a4cd3816beac9a69ddd6f67834e49e" }
191+
vite_str = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "4bbcba1733a4cd3816beac9a69ddd6f67834e49e" }
192+
vite_task = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "4bbcba1733a4cd3816beac9a69ddd6f67834e49e" }
193+
vite_workspace = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "4bbcba1733a4cd3816beac9a69ddd6f67834e49e" }
194194
walkdir = "2.5.0"
195195
wax = "0.6.0"
196196
which = "8.0.0"

0 commit comments

Comments
 (0)