Skip to content

Commit fde23b2

Browse files
authored
feat(deps): upgrade upstream dependencies (#786)
Automated daily upgrade of upstream dependencies: - rolldown (latest tag) - rolldown-vite (latest tag) - vitest (latest npm version) - tsdown (latest npm version) Build status: success <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Medium Risk** > Primarily dependency upgrades, but they change the pack `--exe` output location/name (`dist` -> `build`), which can affect CLI behavior and downstream scripts/tests. > > **Overview** > Updates the bundled toolchain versions (notably `rolldown` to `1.0.0-rc.9` and `tsdown`/`@tsdown/*` to `0.21.2`), along with related lockfile and upstream hash bumps. > > Adjusts the `vp pack --exe` snapshot tests to match new output behavior: executables are now produced and invoked from `build/index` (and test cleanup now removes both `dist` and `build`). > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 6e51ea1. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent d465c9b commit fde23b2

7 files changed

Lines changed: 61 additions & 61 deletions

File tree

Cargo.lock

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

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ VITE+ - The Unified Toolchain for the Web
88
ℹ dist/index.mjs <variable> kB │ gzip: <variable> kB
99
ℹ 1 files, total: <variable> kB
1010
✔ Build complete in <variable>ms
11-
dist/index <variable> MB
12-
✔ Built executable: dist/index (<variable>ms)
11+
build/index <variable> MB
12+
✔ Built executable: build/index (<variable>ms)
1313

1414
> ls dist
15-
index
1615
index.mjs
1716

18-
> ./dist/index
17+
> ls build
18+
index
19+
20+
> ./build/index
1921
hello from exe

packages/cli/snap-tests-global/command-pack-exe/steps.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"env": {
44
"VITE_DISABLE_AUTO_INSTALL": "1"
55
},
6-
"commands": ["vp pack src/index.ts --exe", "ls dist", "./dist/index"],
7-
"after": ["rm -rf dist"]
6+
"commands": ["vp pack src/index.ts --exe", "ls dist", "ls build", "./build/index"],
7+
"after": ["rm -rf dist", "rm -rf build"]
88
}

packages/core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@
125125
},
126126
"peerDependencies": {
127127
"@arethetypeswrong/core": "^0.18.1",
128-
"@tsdown/css": "0.21.1",
129-
"@tsdown/exe": "0.21.1",
128+
"@tsdown/css": "0.21.2",
129+
"@tsdown/exe": "0.21.2",
130130
"@types/node": "^20.19.0 || >=22.12.0",
131131
"@vitejs/devtools": "^0.0.0-alpha.31",
132132
"esbuild": "^0.27.0",
@@ -207,7 +207,7 @@
207207
},
208208
"bundledVersions": {
209209
"vite": "8.0.0-beta.18",
210-
"rolldown": "1.0.0-rc.8",
211-
"tsdown": "0.21.1"
210+
"rolldown": "1.0.0-rc.9",
211+
"tsdown": "0.21.2"
212212
}
213213
}

packages/tools/.upstream-versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"rolldown": {
33
"repo": "https://github.com/rolldown/rolldown.git",
44
"branch": "main",
5-
"hash": "4c0d397ff77ee1abc2509db5d3a05f902bdea70c"
5+
"hash": "00f9fa1d47335aacbb9becc527fd920169bdf0cf"
66
},
77
"rolldown-vite": {
88
"repo": "https://github.com/vitejs/vite.git",

pnpm-lock.yaml

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

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ catalog:
104104
terser: ^5.44.1
105105
tinybench: ^6.0.0
106106
tinyexec: ^1.0.1
107-
tsdown: ^0.21.1
107+
tsdown: ^0.21.2
108108
tsx: ^4.20.6
109109
typescript: ^5.9.3
110110
unified: ^11.0.5

0 commit comments

Comments
 (0)