Skip to content

Update dependency tsdown to ^0.21.0#450

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

Update dependency tsdown to ^0.21.0#450
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/tsdown-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 11, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
tsdown (source) ^0.18.2^0.21.0 age adoption passing confidence

Release Notes

rolldown/tsdown (tsdown)

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

Configuration

📅 Schedule: Branch creation - "on sunday before 6:00am" in timezone UTC, 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 added the dependencies Pull requests that update a dependency file label Jan 11, 2026
@vercel
Copy link

vercel bot commented Jan 11, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
lobe-ui Ready Ready Preview, Comment Mar 11, 2026 5:26pm

Request Review

@lobehubbot
Copy link
Member

👍 @renovate[bot]


Thank you for raising your pull request and contributing to our Community
Please make sure you have followed our contributing guidelines. We will review it as soon as possible.
If you encounter any problems, please feel free to connect with us.
非常感谢您提出拉取请求并为我们的社区做出贡献,请确保您已经遵循了我们的贡献指南,我们会尽快审查它。
如果您遇到任何问题,请随时与我们联系。

@gru-agent
Copy link
Contributor

gru-agent bot commented Jan 11, 2026

TestGru Assignment

Summary

Link CommitId Status Reason
Detail 3ebdc32 🚫 Skipped No files need to be tested {"package.json":"File path does not match include patterns."}

History Assignment

Tip

You can @gru-agent and leave your feedback. TestGru will make adjustments based on your input

@pkg-pr-new
Copy link

pkg-pr-new bot commented Jan 11, 2026

Open in StackBlitz

npm i https://pkg.pr.new/@lobehub/ui@450

commit: 2be5642

@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 3ebdc32 to 3490c91 Compare January 19, 2026 16:14
@renovate renovate bot changed the title Update dependency tsdown to ^0.19.0 Update dependency tsdown to ^0.20.0 Jan 22, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 3490c91 to 7210648 Compare January 22, 2026 16:26
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 7210648 to 1664a41 Compare January 22, 2026 20:32
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 1664a41 to 7153fe8 Compare January 23, 2026 18:04
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 7153fe8 to 94cf9ee Compare February 2, 2026 21:11
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 94cf9ee to ed7c8bc Compare February 4, 2026 22:33
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from ed7c8bc to 4fd71ac Compare February 12, 2026 11:15
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 4fd71ac to 112bfc7 Compare February 17, 2026 21:14
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 112bfc7 to 2d33934 Compare March 5, 2026 09:08
@renovate renovate bot changed the title Update dependency tsdown to ^0.20.0 Update dependency tsdown to ^0.21.0 Mar 5, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 2d33934 to f2c2b82 Compare March 5, 2026 17:07
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from f2c2b82 to 679703f Compare March 9, 2026 09:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant