Skip to content

Commit 1ea0d46

Browse files
committed
fix(oxlint): resolve tsdown deprecation warning (#14389)
I currently see the following warning when bundling with tsdown ``` oxlint@1.20.0 build-js D:\a\oxc\oxc\apps\oxlint > node scripts/build.js Modifying bindings.js... Building with tsdown... ℹ tsdown v0.15.5 powered by rolldown v1.0.0-beta.41 ℹ Using tsdown config: D:\a\oxc\oxc\apps\oxlint\tsdown.config.ts WARN `bundle` option is deprecated. Use `unbundle` instead. WARN `bundle` option is deprecated. Use `unbundle` instead. ```
1 parent 56274a5 commit 1ea0d46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/oxlint/tsdown.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const commonConfig: UserConfig = {
66
target: 'node20',
77
outDir: 'dist',
88
clean: true,
9-
bundle: true,
9+
unbundle: false,
1010
external: [
1111
// External native bindings
1212
'./oxlint.*.node',

0 commit comments

Comments
 (0)