Use when upgrading a Rsbuild 1.x project to v2, including dependency and configuration updates.
Install
npx skillscat add rstackjs/agent-skills/rsbuild-v2-upgrade Install via the SkillsCat registry.
SKILL.md
Rsbuild v1 to v2 Upgrade
Workflow
Confirm current setup
- Read
package.jsonto identify Rsbuild and plugin packages in use. - Locate the Rsbuild config file (commonly
rsbuild.config.(ts|js|mjs|cjs)).
- Read
Open the official upgrade guide
- Use the v1 → v2 guide as the source of truth:
Plan the upgrade path
- Compare the current project config with the migration guide.
- List breaking changes that apply to the project’s current config and plugins.
- Note any removed or renamed options, defaults, or plugin APIs.
Update dependencies
- Bump
@rsbuild/coreto v2 (currently Beta tag). - Bump Rsbuild plugins to latest versions via
npx taze major --include /rsbuild/ -w -r
- Bump
Apply config and code changes
- Update the Rsbuild config to match v2 options and defaults.
- Remove deprecated or unsupported settings.
Validate
- Run the build and dev commands.
- Run project tests or type checks.
- Fix any warnings or errors surfaced by the new version.