Skip to content

chore(deps): update dependency @rslib/core to v0.23.2 - #11

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rslib-core-0.x
Open

chore(deps): update dependency @rslib/core to v0.23.2#11
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rslib-core-0.x

Conversation

@renovate

@renovate renovate Bot commented Dec 3, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@rslib/core (source) 0.18.00.23.2 age confidence

Release Notes

web-infra-dev/rslib (@​rslib/core)

v0.23.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.23.1...v0.23.2

v0.23.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.23.0...v0.23.1

v0.23.0

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Other Changes

Full Changelog: web-infra-dev/rslib@v0.22.1...v0.23.0

v0.22.1

Compare Source

What's Changed
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.22.0...v0.22.1

v0.22.0

Compare Source

Highlights

Isolated Declaration Generation

Rslib now supports generating declaration files with the experimental dts.isolated option, powered by Rspack's built-in SWC fast_dts capability.

dts.isolated emits declaration files directly during the build without running a full type check, making declaration generation significantly faster.

This makes it a good fit for monorepo projects that use a separate high-performance type-checking workflow, such as rslint --type-check.

export default {
  lib: [
    {
      dts: {
        isolated: true,
      },
    },
  ],
};
Isolated Declaration Generation

More details: dts.isolated

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.5...v0.22.0

v0.21.5

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes
New Contributors

Full Changelog: web-infra-dev/rslib@v0.21.4...v0.21.5

v0.21.4

Compare Source

What's Changed
New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.3...v0.21.4

v0.21.3

Compare Source

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.2...v0.21.3

v0.21.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.1...v0.21.2

v0.21.1

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes
New Contributors

Full Changelog: web-infra-dev/rslib@v0.21.0...v0.21.1

v0.21.0

Compare Source

Highlights 💡

Single Executable Applications

Rslib now supports building Node.js single executable applications with the experimental experiments.exe option.

export default {
  lib: [
    {
      format: 'esm',
      experiments: {
        exe: true,
      },
    },
  ],
};

More details: experiments.exe

Best Practices Skill

Rslib now provides a best practices skill, which can be used when writing, reviewing, or troubleshooting Rslib projects.

  • In an existing project:
npx skills add rstackjs/agent-skills --skill rslib-best-practices
  • When creating a new project:
npx -y create-rslib@latest my-project -t react --skill rslib-best-practices

More details: AI - Agent Skills

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.20.3...v0.21.0

v0.20.3

Compare Source

What's Changed

Other Changes

Full Changelog: web-infra-dev/rslib@v0.20.2...v0.20.3

v0.20.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.20.1...v0.20.2

v0.20.1

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.20.0...v0.20.1

v0.20.0

Compare Source

Breaking changes 🚨

Drop Node.js 18 support

Rslib v0.20 requires Node.js 20.19+ or 22.12+, Node.js 18 is no longer supported.

Rsbuild / Rspack v2

Rslib v0.20 now depends on beta version of @​rsbuild/core v2 and @​rspack/core v2. If you use custom Rsbuild / Rspack configurations or plugins, you may need to make corresponding adjustments.

See the Rsbuild v2 upgrade guide for all breaking changes.

Deprecate experiments.advancedEsm

experiments.advancedEsm is now deprecated and effectively ignored. Advanced ESM behavior is the default in both bundle and bundleless mode.

What you need to do:

  • Remove experiments.advancedEsm from your config
  • Verify the output behaviour
Rename type StartServerResult

The exported type StartServerResult has been renamed to StartDevServerResult.

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.6...v0.20.0

v0.19.6

Compare Source

What's Changed

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.5...v0.19.6

v0.19.5

Compare Source

What's Changed

Document 📖

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Berlin)

  • Branch creation
    • Every minute (* * * * *)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR is behind base branch, 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 label Dec 3, 2025
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 1315165 to 6f4d86e Compare December 6, 2025 08:58
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.18.2 chore(deps): update dependency @rslib/core to v0.18.3 Dec 6, 2025
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 6f4d86e to 895dcf6 Compare December 12, 2025 14:37
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.18.3 chore(deps): update dependency @rslib/core to v0.18.4 Dec 12, 2025
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 895dcf6 to 77a7429 Compare December 21, 2025 14:12
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.18.4 chore(deps): update dependency @rslib/core to v0.18.5 Dec 21, 2025
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 77a7429 to cbb28fb Compare December 27, 2025 16:34
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.18.5 chore(deps): update dependency @rslib/core to v0.18.6 Dec 27, 2025
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from c00da30 to 98b575f Compare January 1, 2026 09:54
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.18.6 chore(deps): update dependency @rslib/core to v0.19.0 Jan 1, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 98b575f to 52103c9 Compare January 3, 2026 10:04
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.19.0 chore(deps): update dependency @rslib/core to v0.19.1 Jan 3, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from e22d5f6 to 82c092d Compare January 15, 2026 11:10
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.19.1 chore(deps): update dependency @rslib/core to v0.19.2 Jan 15, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 82c092d to b2615c9 Compare January 24, 2026 08:33
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.19.2 chore(deps): update dependency @rslib/core to v0.19.3 Jan 24, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from b2615c9 to 841a0fb Compare February 2, 2026 14:50
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.19.3 chore(deps): update dependency @rslib/core to v0.19.4 Feb 2, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 841a0fb to 51e58f1 Compare February 8, 2026 08:56
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.19.4 chore(deps): update dependency @rslib/core to v0.19.5 Feb 8, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from c596909 to f9e210e Compare February 17, 2026 10:38
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.19.5 chore(deps): update dependency @rslib/core to v0.19.6 Feb 17, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from f9e210e to 65e32c8 Compare March 5, 2026 15:49
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from 6462bca to e6db22d Compare March 13, 2026 16:42
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.19.6 chore(deps): update dependency @rslib/core to v0.20.0 Mar 13, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 387e2c2 to c224c69 Compare April 17, 2026 14:56
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.21.0 chore(deps): update dependency @rslib/core to v0.21.1 Apr 17, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from c224c69 to d7ba8d1 Compare April 18, 2026 13:37
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.21.1 chore(deps): update dependency @rslib/core to v0.21.2 Apr 18, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from d7ba8d1 to 3ab2bb5 Compare April 25, 2026 13:19
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.21.2 chore(deps): update dependency @rslib/core to v0.21.3 Apr 25, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 3ab2bb5 to 8a8890f Compare April 29, 2026 13:42
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 8a8890f to 09d99e5 Compare May 10, 2026 09:47
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.21.3 chore(deps): update dependency @rslib/core to v0.21.4 May 10, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 09d99e5 to 1d4ba53 Compare May 16, 2026 13:10
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.21.4 chore(deps): update dependency @rslib/core to v0.21.5 May 16, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from 0296e5d to 0f436a0 Compare June 1, 2026 16:57
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.21.5 chore(deps): update dependency @rslib/core to v0.22.0 Jun 1, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from 6417c5e to d04ea1e Compare June 15, 2026 10:12
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.22.0 chore(deps): update dependency @rslib/core to v0.22.1 Jun 15, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from d04ea1e to ef4fc51 Compare June 19, 2026 11:59
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.22.1 chore(deps): update dependency @rslib/core to v0.23.0 Jun 19, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from ef4fc51 to cbc4f13 Compare June 30, 2026 11:42
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.23.0 chore(deps): update dependency @rslib/core to v0.23.1 Jun 30, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from cbc4f13 to 0fbd87f Compare July 6, 2026 16:51
@renovate renovate Bot changed the title chore(deps): update dependency @rslib/core to v0.23.1 chore(deps): update dependency @rslib/core to v0.23.2 Jul 6, 2026
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from f56959c to 62f4af0 Compare July 16, 2026 17:04
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from 07a2e7b to fc76276 Compare July 30, 2026 16:52
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from fc76276 to 5e4f6f9 Compare August 12, 2026 01:46
@renovate
renovate Bot force-pushed the renovate/rslib-core-0.x branch from 5e4f6f9 to f909b6d Compare August 14, 2026 22:07
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