Skip to content

chore: update dependency tsdown to ^0.21.8#197

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

chore: update dependency tsdown to ^0.21.8#197
renovate[bot] wants to merge 1 commit intomainfrom
renovate/tsdown-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Nov 27, 2025

This PR contains the following updates:

Package Change Age Confidence
tsdown (source) ^0.16.8^0.21.8 age confidence

Release Notes

rolldown/tsdown (tsdown)

v0.21.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.7

Compare Source

   🚀 Features
  • Add module option for attw and publint to allow passing imported modules directly  -  by @​sxzz (31e90)
   🐞 Bug Fixes
  • deps: Add skipNodeModulesBundle dep subpath e2e tests and fix docs  -  by @​sxzz (deff7)
    View changes on GitHub

v0.21.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

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

Configuration

📅 Schedule: (UTC)

  • 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 from 05b236c to f2674d4 Compare December 2, 2025 18:11
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.16.6 chore: update dependency tsdown to ^0.16.7 Dec 2, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from f2674d4 to 68b9c75 Compare December 4, 2025 21:51
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.16.7 chore: update dependency tsdown to ^0.16.8 Dec 4, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 68b9c75 to 2f6e96c Compare December 11, 2025 17:05
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.16.8 chore: update dependency tsdown to ^0.17.0 Dec 11, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 2f6e96c to 7d70e0d Compare December 15, 2025 02:56
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.17.0 chore: update dependency tsdown to ^0.17.1 Dec 15, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 7d70e0d to 1104dae Compare December 15, 2025 22:25
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.17.1 chore: update dependency tsdown to ^0.17.2 Dec 15, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 1104dae to 567b72b Compare December 22, 2025 13:02
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.17.2 chore: update dependency tsdown to ^0.18.0 Dec 22, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 567b72b to a792a6c Compare December 24, 2025 21:31
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.18.0 chore: update dependency tsdown to ^0.18.1 Dec 24, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from a792a6c to 57bc548 Compare December 28, 2025 13:07
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.18.1 chore: update dependency tsdown to ^0.18.2 Dec 28, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 57bc548 to 080d6c5 Compare December 31, 2025 16:58
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.18.2 chore: update dependency tsdown to ^0.18.3 Dec 31, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 080d6c5 to 8299e60 Compare January 6, 2026 17:50
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.18.3 chore: update dependency tsdown to ^0.18.4 Jan 6, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 8299e60 to 314b7f2 Compare January 8, 2026 19:51
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 314b7f2 to 9654407 Compare January 17, 2026 09:34
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.18.4 chore: update dependency tsdown to ^0.19.0 Jan 17, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 9654407 to a47f3f7 Compare January 29, 2026 16:40
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.19.0 chore: update dependency tsdown to ^0.20.0 Jan 29, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from a47f3f7 to e210524 Compare January 29, 2026 20:48
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.20.0 chore: update dependency tsdown to ^0.20.1 Jan 29, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from e210524 to 7a13e0b Compare February 2, 2026 19:50
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 7a13e0b to 516282c Compare February 12, 2026 00:52
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.20.1 chore: update dependency tsdown to ^0.20.2 Feb 12, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 516282c to 1f33e03 Compare February 12, 2026 12:06
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.20.2 chore: update dependency tsdown to ^0.20.3 Feb 12, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 1f33e03 to 88872c4 Compare February 17, 2026 15:09
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 9d2301b to b075a85 Compare March 5, 2026 17:48
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from b075a85 to 407f862 Compare March 12, 2026 09:08
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.20.3 chore: update dependency tsdown to ^0.21.0 Mar 12, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 407f862 to bcbd7bd Compare March 16, 2026 09:51
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.21.0 chore: update dependency tsdown to ^0.21.1 Mar 16, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from bcbd7bd to ce418a4 Compare March 18, 2026 17:10
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.21.1 chore: update dependency tsdown to ^0.21.2 Mar 18, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from ce418a4 to 1c15fad Compare March 22, 2026 14:02
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.21.2 chore: update dependency tsdown to ^0.21.3 Mar 22, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 1c15fad to 7b0037b Compare March 23, 2026 16:48
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.21.3 chore: update dependency tsdown to ^0.21.4 Mar 23, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 7b0037b to d867dea Compare April 1, 2026 13:58
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.21.4 chore: update dependency tsdown to ^0.21.5 Apr 1, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from d867dea to 3e8a820 Compare April 3, 2026 05:21
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.21.5 chore: update dependency tsdown to ^0.21.6 Apr 3, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 3e8a820 to 1e9b8cd Compare April 4, 2026 17:23
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.21.6 chore: update dependency tsdown to ^0.21.7 Apr 4, 2026
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 1e9b8cd to dd1992f Compare April 8, 2026 21:39
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Apr 8, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Progress: resolved 1, reused 0, downloaded 0, added 0
 ERR_PNPM_TRUST_DOWNGRADE  High-risk trust downgrade for "@voxpelli/config-array-find-files@1.2.2" (possible package takeover)

This error happened while installing a direct dependency of /tmp/renovate/repos/github/eslint/config-inspector

Trust checks are based solely on publish date, not semver. A package cannot be installed if any earlier-published version had stronger trust evidence. Earlier versions had provenance attestation, but this version has no trust evidence. A trust downgrade may indicate a supply chain incident.

@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from dd1992f to 2ae2f60 Compare April 20, 2026 14:12
@renovate renovate bot changed the title chore: update dependency tsdown to ^0.21.7 chore: update dependency tsdown to ^0.21.8 Apr 20, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants