rsbuild-v2-upgrade
$
npx mdskill add rstackjs/agent-skills/rsbuild-v2-upgradeUpgrade Rsbuild projects from v1 to v2 with automated dependency and config changes.
- Identifies breaking changes and outdated plugins in existing projects.
- Reads package.json and official migration guides to plan updates.
- Executes npm commands to bump core packages and plugins to v2.
- Validates builds and fixes errors found during the upgrade process.
SKILL.md
.github/skills/rsbuild-v2-upgradeView on GitHub ↗
---
name: rsbuild-v2-upgrade
description: Use when upgrading a Rsbuild 1.x project to v2, including dependency and configuration updates.
---
# Rsbuild v1 to v2 Upgrade
## Workflow
1. **Confirm current setup**
- Read `package.json` to identify Rsbuild and plugin packages in use.
- Locate the Rsbuild config file (commonly `rsbuild.config.(ts|js|mjs|cjs)`).
2. **Open the official upgrade guide**
- Use the v1 → v2 guide as the source of truth:
- https://v2.rsbuild.rs/guide/upgrade/v1-to-v2
3. **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.
4. **Update dependencies**
- Bump `@rsbuild/core` to v2 (currently `rc` tag).
- Bump Rsbuild plugins to latest versions via `npx taze major --include /rsbuild/ -w -r`
5. **Apply config and code changes**
- Update the Rsbuild config to match v2 options and defaults.
- Remove deprecated or unsupported settings.
6. **Validate**
- Run the build and dev commands.
- Run project tests or type checks.
- Fix any warnings or errors surfaced by the new version.
More from rstackjs/agent-skills
- migrate-to-rsbuildMigrate webpack, Vite, create-react-app (CRA/CRACO), or Vue CLI projects to Rsbuild.
- migrate-to-rslibMigrate tsc or tsup library projects to Rslib.
- migrate-to-rstestMigrate Jest or Vitest test suites and configs to Rstest. Use when asked to move from Jest/Vitest to Rstest, replace framework APIs with `@rstest/core`, translate test config to `rstest.config.ts`, or update test scripts and setup files for Rstest equivalents.
- pr-creatorUse when asked to create a pull request for this repository. It helps the PR follow the repository's branch safety rules, title convention, pull request template, and concise English writing style.
- rsbuild-best-practicesRsbuild best practices for config, CLI workflow, type checking, bundle optimization, assets, and debugging. Use when writing, reviewing, or troubleshooting Rsbuild projects.
- rsdoctor-analysisUse when analyzing Rspack/Webpack bundles from local `rsdoctor-data.json` and producing evidence-based optimization recommendations.
- rslib-best-practicesRslib best practices for config, CLI workflow, output, declaration files, dependency handling, build optimization and toolchain integration. Use when writing, reviewing, or troubleshooting Rslib projects.
- rspack-best-practicesRspack best practices for config, CLI workflow, type checking, CSS, bundle optimization, assets and profiling. Use when writing, reviewing, or troubleshooting Rspack projects.
- rspack-debuggingHelps Rspack users and developers debug crashes or deadlocks/hangs in the Rspack build process using LLDB. Use this Skill when users encounter "Segmentation fault" errors during Rspack builds or when the build progress gets stuck.
- rspack-split-chunks>-