Skip to content

Commit a7dc666

Browse files
authored
chore: bump vite-task to 6fdc4f10 (#777)
## Summary - Bumps vite-task dependency from 4bbcba17 to 6fdc4f10 Includes: - feat: tree-view task selector with grouped packages (#219) - fix: align package headers with top-level items in task selector (#220) - chore: Adjust vp run output styling (#213) - Improve shell quote handling with proper nested quote support (#217) Updates snap tests for output styling change. ## Test plan - [x] cargo check --all-targets --all-features passes locally - [ ] CI passes on all platforms
1 parent 2764ddd commit a7dc666

17 files changed

Lines changed: 43 additions & 41 deletions

File tree

Cargo.lock

Lines changed: 18 additions & 18 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 = "4bbcba1733a4cd3816beac9a69ddd6f67834e49e" }
87+
fspy = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "6fdc4f106563491be4fb36381b84c5937d74fe9c" }
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 = "4bbcba1733a4cd3816beac9a69ddd6f67834e49e" }
186+
vite_glob = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "6fdc4f106563491be4fb36381b84c5937d74fe9c" }
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 = "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" }
190+
vite_path = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "6fdc4f106563491be4fb36381b84c5937d74fe9c" }
191+
vite_str = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "6fdc4f106563491be4fb36381b84c5937d74fe9c" }
192+
vite_task = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "6fdc4f106563491be4fb36381b84c5937d74fe9c" }
193+
vite_workspace = { git = "ssh://git@github.com/voidzero-dev/vite-task.git", rev = "6fdc4f106563491be4fb36381b84c5937d74fe9c" }
194194
walkdir = "2.5.0"
195195
wax = "0.6.0"
196196
which = "8.0.0"

packages/cli/snap-tests/build-vite-env/snap.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dist/assets/index-BnIqjoTZ.js <variable> kB │ gzip: <variable> kB
2020
✓ built in <variable>ms
2121

2222
---
23-
[vp run] cache hit, <variable>ms saved.
23+
vp run: cache hit, <variable>ms saved.
2424

2525
> VITE_MY_VAR=2 vp run build # env changed, should miss cache
2626
$ vp build ✗ cache miss: envs changed, executing

packages/cli/snap-tests/cache-clean/snap.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $ vp fmt ✓ cache hit, replaying
88
Finished in <variable>ms on 4 files using <variable> threads.
99

1010
---
11-
[vp run] cache hit, <variable>ms saved.
11+
vp run: cache hit, <variable>ms saved.
1212

1313
> vp cache clean # clean the cache
1414
> vp run hello # cache miss after clean

packages/cli/snap-tests/cache-scripts-enabled/snap.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ $ node hello.mjs ✓ cache hit, replaying
88
hello from script
99

1010
---
11-
[vp run] cache hit, <variable>ms saved.
11+
vp run: cache hit, <variable>ms saved.

packages/cli/snap-tests/change-passthrough-env-config/snap.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $ node -p process.env.MY_ENV ✓ cache hit, replaying
88
1
99

1010
---
11-
[vp run] cache hit, <variable>ms saved.
11+
vp run: cache hit, <variable>ms saved.
1212

1313
> # add a new pass through env via VITE_TASK_PASS_THROUGH_ENVS
1414
> VITE_TASK_PASS_THROUGH_ENVS=MY_ENV,MY_ENV2 MY_ENV=2 vp run hello # cache should be invalidated because passThroughEnvs config changed

packages/cli/snap-tests/command-install-shortcut/snap.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ dependencies:
2222
Done in <variable>ms using pnpm v<semver>
2323

2424
---
25-
[vp run] cache hit, <variable>ms saved.
25+
vp run: cache hit, <variable>ms saved.

packages/cli/snap-tests/command-pack-monorepo/snap.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ index.cjs
44

55
> vp run hello#build 2>&1 | grep 'cache hit' # should hit cache
66
~/packages/hello$ vp pack ✓ cache hit, replaying
7-
[vp run] cache hit, <variable>ms saved.
7+
vp run: cache hit, <variable>ms saved.
88

99
> vp run array-config#build # should build the library supports array config
1010
> ls packages/array-config/dist # should have the library
@@ -13,12 +13,12 @@ index.mjs
1313

1414
> vp run array-config#build 2>&1 | grep 'cache hit' # should hit cache
1515
~/packages/array-config$ vp pack ✓ cache hit, replaying
16-
[vp run] cache hit, <variable>ms saved.
16+
vp run: cache hit, <variable>ms saved.
1717

1818
> vp run default-config#build # should build the library supports default config
1919
> ls packages/default-config/dist # should have the library
2020
index.mjs
2121

2222
> vp run default-config#build 2>&1 | grep 'cache hit' # should hit cache
2323
~/packages/default-config$ vp pack ✓ cache hit, replaying
24-
[vp run] cache hit, <variable>ms saved.
24+
vp run: cache hit, <variable>ms saved.

packages/cli/snap-tests/command-pack/snap.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ $ vp pack src/index.ts ✓ cache hit, replaying
7171
✔ Build complete in <variable>ms
7272

7373
---
74-
[vp run] cache hit, <variable>ms saved.
74+
vp run: cache hit, <variable>ms saved.

packages/cli/snap-tests/ignore_dist/snap.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Found 0 warnings and 0 errors.
1111
Finished in <variable>ms on 1 file with <variable> rules using <variable> threads.
1212

1313
---
14-
[vp run] cache hit, <variable>ms saved.
14+
vp run: cache hit, <variable>ms saved.

0 commit comments

Comments
 (0)