Skip to content

chore(deps): update dependency tsdown to ^0.21.0#24

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/tsdown-0.x
Open

chore(deps): update dependency tsdown to ^0.21.0#24
renovate[bot] wants to merge 1 commit intomainfrom
renovate/tsdown-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 9, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
tsdown (source) ^0.14.0^0.21.0 age confidence

Release Notes

rolldown/tsdown (tsdown)

v0.21.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
  • exports: Preserve CRLF line endings in package.json  -  by @​sxzz (a4d4e)
    View changes on GitHub

v0.21.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.2

Compare Source

   🚨 Breaking Changes
  • exe: Add exe.outDir for separate executable output dir, defaults to build  -  by @​sxzz (d49ef)

Note: Executable is still an experimental feature and does not follow SemVer. Breaking changes may occur in any release.

   🚀 Features
   🐞 Bug Fixes
  • css: Skip data URIs and external URLs in CSS url() rebasing  -  by @​sxzz (13907)
    View changes on GitHub

v0.21.1

Compare Source

   🚨 Breaking Changes

[!IMPORTANT]
If you are using CSS features (e.g., CSS imports), you now need to manually install the @tsdown/css package:

npm install @​tsdown/css -D
# or
pnpm add @​tsdown/css -D

Note: CSS support is still an experimental feature and does not follow SemVer. Breaking changes may occur in any release.

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.0

Compare Source

v0.21.0 - Notable Changes

Breaking Changes
Dependency options renamed to deps namespace

The dependency-related options have been moved under a new deps namespace with clearer names:

  • external -> deps.neverBundle
  • noExternal -> deps.alwaysBundle
  • inlineOnly -> deps.onlyAllowBundle
  • skipNodeModulesBundle -> deps.skipNodeModulesBundle

Before:

export default defineConfig({
  external: ['vue'],
  noExternal: ['lodash'],
})

After:

export default defineConfig({
  deps: {
    neverBundle: ['vue'],
    alwaysBundle: ['lodash'],
  },
})

The old options still work but are deprecated and will emit warnings.

failOnWarn default changed from 'ci-only' to false

If you relied on the previous behavior where warnings would fail the build in CI environments, you now need to explicitly set failOnWarn: true or failOnWarn: 'ci-only' in your config.

Node.js < 22.18.0 deprecated

tsdown now emits a deprecation warning when running on Node.js versions below 22.18.0. Plan to upgrade your Node.js version accordingly.

New Features
Experimental Node.js SEA executable bundling (exe)

tsdown can now bundle your TypeScript project into a standalone executable using Node.js Single Executable Applications (SEA). A new @tsdown/exe package provides cross-platform executable building support. See the exe documentation for details.

export default defineConfig({
  exe: true, // or { useCodeCache: true, useSnapshot: true }
})
Full CSS pipeline with @tsdown/css

CSS handling has been reimplemented as a native Rolldown plugin and extracted into the @tsdown/css package, providing a complete CSS pipeline with Lightning CSS and PostCSS support via the css.transformer option. See the CSS documentation for details.

inlinedDependencies field in package.json

When using the exports feature, tsdown now auto-generates an inlinedDependencies field in your package.json, listing dependencies that are bundled into the output.

Object option for customExports

customExports now supports an object format for more fine-grained control over the generated exports field.

Migration Guide
  1. Update dependency options: Rename external -> deps.neverBundle, noExternal -> deps.alwaysBundle, etc.
  2. Check failOnWarn: If you need warnings to fail the build in CI, explicitly set failOnWarn: 'ci-only' or failOnWarn: true.
  3. Upgrade Node.js: Ensure you're running Node.js >= 22.18.0 to avoid deprecation warnings.
Links

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.20.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.20.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.20.1

Compare Source

   🚀 Features
    View changes on GitHub

v0.20.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.19.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.18.4

Compare Source

   🚀 Features
    View changes on GitHub

v0.18.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.18.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.18.1

Compare Source

   🚀 Features
export default defineConfig({
  entry: {
    '*': './src/*.ts',
    'data-loaders': './src/data-loaders/entries/index.ts',
    'data-loaders/*': './src/data-loaders/entries/!(index).ts',
    'volar/*': './src/volar/entries/*.ts',
  },
}
   🐞 Bug Fixes
    View changes on GitHub

v0.18.0

Compare Source

   🚨 Breaking Changes

v0.17.4

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.17.3

Compare Source

   🚀 Features
  • copy: Support glob in copy  -  by @​kricsleo and @​sxzz in #​637 (c1fd4)
    • This may be a breaking change, as the behavior has changed again in v0.17.4. Please upgrade to v0.17.4 and verify the issue.
   🐞 Bug Fixes
    View changes on GitHub

v0.17.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.0

Compare Source

   🚨 Breaking Changes

Notable features: https://bsky.app/profile/sxzz.dev/post/3m6xi7e7d5k2b

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.16.8

Compare Source

   🚀 Features
Deprecation
  • Deprecate attw.profile = 'esmOnly', use esm-only instead.
    View changes on GitHub

v0.16.7

Compare Source

   🚀 Features
    View changes on GitHub

v0.16.6

Compare Source

   🚀 Features
    View changes on GitHub

v0.16.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.16.4

Compare Source

   🚀 Features
    View changes on GitHub

v0.16.3

Compare Source

   🏎 Performance
    View changes on GitHub

v0.16.2

Compare Source

   🚀 Features
  • Upgrade rolldown to v1.0.0-beta.49  -  by @​sxzz (48181)
  • entry: Auto enable glob, support infer entry extension  -  by @​sxzz and jinghaihan (2c525)
    View changes on GitHub

v0.16.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.16.0

Compare Source

   🚨 Breaking Changes
  • Rename config exports  -  by @​sxzz in #​519 (7de20)
    • Split Options interface into UserConfig and InlineConfig. The original one now is InlineConfig.
    • Rename NormalizedUserConfig to UserConfig
    • Rename ResolvedOptions to ResolvedConfig
  • Defaults fixedExtension to true when platform is node  -  by @​sxzz in #​517 (e1168)
  • Rename --debug CLI flag to --debug-logs  -  by @​sxzz in #​576 (e4ef6)
   🚀 Features
    View changes on GitHub

v0.15.12

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.11

Compare Source

No significant changes

    View changes on GitHub

v0.15.10

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.7

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.15.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.1

[Compare Source](https


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 2b086f8 to 09dd47e Compare September 16, 2025 17:54
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 4 times, most recently from f0f21d2 to 2e7ccd4 Compare September 27, 2025 09:06
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 2e7ccd4 to 91cd965 Compare September 30, 2025 13:46
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 4 times, most recently from f9f97ae to 2f4769a Compare October 20, 2025 14:06
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 3 times, most recently from b068375 to 0455609 Compare October 28, 2025 07:53
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from e818f6e to b565bb0 Compare November 4, 2025 16:11
@renovate renovate bot changed the title chore(deps): update dependency tsdown to ^0.15.0 chore(deps): update dependency tsdown to ^0.16.0 Nov 4, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 5 times, most recently from d490c36 to 9fd2b1b Compare November 13, 2025 00:54
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 66dc1b7 to 558ebdd Compare November 20, 2025 09:32
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 900e3bf to 940af28 Compare November 27, 2025 19:04
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 940af28 to 8e4f90e Compare December 3, 2025 18:33
@renovate renovate bot changed the title chore(deps): update dependency tsdown to ^0.16.0 chore(deps): update dependency tsdown to ^0.17.0 Dec 4, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 3fc8b69 to cea79d1 Compare December 8, 2025 04:35
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 3 times, most recently from 1cf5959 to 1cf3629 Compare December 15, 2025 13:54
@renovate renovate bot changed the title chore(deps): update dependency tsdown to ^0.17.0 chore(deps): update dependency tsdown to ^0.18.0 Dec 15, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 3 times, most recently from 6a5624b to 0a5d519 Compare December 24, 2025 17:50
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 21cbbea to ce93535 Compare December 31, 2025 15:31
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 97cc702 to 7696fc6 Compare January 10, 2026 13:26
@renovate renovate bot changed the title chore(deps): update dependency tsdown to ^0.18.0 chore(deps): update dependency tsdown to ^0.19.0 Jan 10, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 0e60596 to 8f30a2d Compare January 22, 2026 18:01
@renovate renovate bot changed the title chore(deps): update dependency tsdown to ^0.19.0 chore(deps): update dependency tsdown to ^0.20.0 Jan 22, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 8f30a2d to 4638b4d Compare January 22, 2026 21:37
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 3 times, most recently from a2c3b08 to 4c9af6d Compare February 5, 2026 08:44
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from d83de1d to 5ef810d Compare February 17, 2026 16:08
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 5ef810d to 2468198 Compare March 5, 2026 10:07
@renovate renovate bot changed the title chore(deps): update dependency tsdown to ^0.20.0 chore(deps): update dependency tsdown to ^0.21.0 Mar 5, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 3 times, most recently from ed65520 to 4562af5 Compare March 11, 2026 18:49
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from d2faebc to 01edd9d Compare March 15, 2026 13:48
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 01edd9d to 35a7bb6 Compare March 16, 2026 17:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants