Skip to content

Commit aa7249f

Browse files
feat(deps): upgrade upstream dependencies
- rolldown: edec4fa -> v1.0.0-rc.17 (d9d72c3) - vite: ce729f5 -> v8.0.10 (32c2978) - tsdown: 0.21.9 -> 0.21.10 - @vitejs/devtools: 0.1.14 -> 0.1.15 Code changes: - Cargo.toml: bump oxc and related crates from 0.126.0 to 0.127.0 - packages/core/package.json: sync bundledVersions (vite, rolldown, tsdown) and bump @tsdown/css/@tsdown/exe peerDependencies to 0.21.10 - packages/core/build.ts: add external filter to the tsdown d.mts bundling step - pnpm-workspace.yaml: bump tsdown catalog entry to ^0.21.10
1 parent 9f79b9b commit aa7249f

7 files changed

Lines changed: 383 additions & 221 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ xxhash-rust = "0.8.15"
212212
zip = "7.2"
213213

214214
# oxc crates with the same version
215-
oxc = { version = "0.126.0", features = [
215+
oxc = { version = "0.127.0", features = [
216216
"ast_visit",
217217
"transformer",
218218
"minifier",
@@ -224,17 +224,17 @@ oxc = { version = "0.126.0", features = [
224224
"regular_expression",
225225
"cfg",
226226
] }
227-
oxc_allocator = { version = "0.126.0", features = ["pool"] }
228-
oxc_ast = "0.126.0"
229-
oxc_ecmascript = "0.126.0"
230-
oxc_parser = "0.126.0"
231-
oxc_span = "0.126.0"
232-
oxc_napi = "0.126.0"
233-
oxc_str = "0.126.0"
234-
oxc_minify_napi = "0.126.0"
235-
oxc_parser_napi = "0.126.0"
236-
oxc_transform_napi = "0.126.0"
237-
oxc_traverse = "0.126.0"
227+
oxc_allocator = { version = "0.127.0", features = ["pool"] }
228+
oxc_ast = "0.127.0"
229+
oxc_ecmascript = "0.127.0"
230+
oxc_parser = "0.127.0"
231+
oxc_span = "0.127.0"
232+
oxc_napi = "0.127.0"
233+
oxc_str = "0.127.0"
234+
oxc_minify_napi = "0.127.0"
235+
oxc_parser_napi = "0.127.0"
236+
oxc_transform_napi = "0.127.0"
237+
oxc_traverse = "0.127.0"
238238

239239
# oxc crates in their own repos
240240
oxc_index = { version = "4", features = ["rayon", "serde"] }

packages/core/build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ async function bundleTsdown() {
422422
format: 'esm',
423423
dir: join(projectDir, 'dist/tsdown'),
424424
},
425+
external: (id: string) => tsdownExternal.some((e) => id.startsWith(e)),
425426
plugins: [
426427
RewriteImportsPlugin,
427428
dts({

0 commit comments

Comments
 (0)