Skip to content

chore(deps): update dependency tsdown to v0.21.2#479

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

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

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 22, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
tsdown (source) 0.12.90.21.2 age confidence

Release Notes

rolldown/tsdown (tsdown)

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

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.0

Compare Source

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

v0.14.2

Compare Source

   🚀 Features

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 added the renovate label Jul 22, 2025
@changeset-bot
Copy link

changeset-bot bot commented Jul 22, 2025

⚠️ No Changeset found

Latest commit: 131abfe

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from d20587f to 2fedb03 Compare August 1, 2025 11:32
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.13.0 chore(deps): update dependency tsdown to v0.13.1 Aug 1, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 251bd0e to 038eb37 Compare August 2, 2025 19:04
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.13.1 chore(deps): update dependency tsdown to v0.13.2 Aug 2, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 038eb37 to 39c3c7b Compare August 5, 2025 14:44
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.13.2 chore(deps): update dependency tsdown to v0.13.3 Aug 5, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 39c3c7b to b8b9ddf Compare August 8, 2025 08:39
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.13.3 chore(deps): update dependency tsdown to v0.13.4 Aug 8, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from b8b9ddf to d929099 Compare August 10, 2025 01:19
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.13.4 chore(deps): update dependency tsdown to v0.14.0 Aug 10, 2025
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.14.0 chore(deps): update dependency tsdown to v0.14.1 Aug 11, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from d929099 to cb2934f Compare August 11, 2025 12:42
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from cb2934f to 773c750 Compare August 21, 2025 11:40
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.14.1 chore(deps): update dependency tsdown to v0.14.2 Aug 25, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 773c750 to 89cfb49 Compare August 25, 2025 10:49
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 3 times, most recently from bbddaec to 949b568 Compare September 9, 2025 13:49
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.14.2 chore(deps): update dependency tsdown to v0.15.0 Sep 9, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 949b568 to 5b6e1ba Compare September 13, 2025 04:04
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.15.0 chore(deps): update dependency tsdown to v0.15.1 Sep 13, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 5b6e1ba to 16fbf20 Compare September 16, 2025 20:33
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.15.1 chore(deps): update dependency tsdown to v0.15.2 Sep 16, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 16fbf20 to 8cd5e91 Compare September 20, 2025 08:49
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.15.2 chore(deps): update dependency tsdown to v0.15.3 Sep 20, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 8cd5e91 to fb0f624 Compare September 20, 2025 21:39
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.15.3 chore(deps): update dependency tsdown to v0.15.4 Sep 20, 2025
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.15.9 chore(deps): update dependency tsdown to v0.15.10 Oct 26, 2025
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.15.10 chore(deps): update dependency tsdown to v0.15.11 Oct 28, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 8a78913 to 136a6df Compare October 30, 2025 00:56
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.15.11 chore(deps): update dependency tsdown to v0.15.12 Oct 30, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 136a6df to 332159b Compare November 4, 2025 18:05
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.15.12 chore(deps): update dependency tsdown to v0.16.0 Nov 4, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 332159b to 27f4588 Compare November 7, 2025 23:12
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.0 chore(deps): update dependency tsdown to v0.16.1 Nov 7, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 27f4588 to fad92fa Compare November 11, 2025 00:14
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.1 chore(deps): update dependency tsdown to v0.16.2 Nov 11, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from 86366f8 to fc30873 Compare November 12, 2025 01:06
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.2 chore(deps): update dependency tsdown to v0.16.3 Nov 12, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from fc30873 to 362a0f6 Compare November 16, 2025 23:53
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.3 chore(deps): update dependency tsdown to v0.16.4 Nov 16, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 362a0f6 to 431472e Compare November 17, 2025 06:45
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.4 chore(deps): update dependency tsdown to v0.16.5 Nov 17, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from 431472e to e601ed0 Compare November 20, 2025 09:48
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.5 chore(deps): update dependency tsdown to v0.16.6 Nov 20, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from e601ed0 to ac9ab8e Compare November 25, 2025 17:56
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.6 chore(deps): update dependency tsdown to v0.16.7 Nov 25, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from ac9ab8e to 1b531c9 Compare November 27, 2025 21:16
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.7 chore(deps): update dependency tsdown to v0.16.8 Nov 27, 2025
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.16.8 chore(deps): update dependency tsdown to v0.17.0 Dec 4, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch 2 times, most recently from f1f6678 to bd13b89 Compare December 8, 2025 06:10
@renovate renovate bot changed the title chore(deps): update dependency tsdown to v0.17.0 chore(deps): update dependency tsdown to v0.17.1 Dec 8, 2025
@renovate renovate bot force-pushed the renovate/tsdown-0.x branch from bd13b89 to d057f95 Compare December 8, 2025 20:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants