rsbuild-v2-upgrade
23
总安装量
6
周安装量
#16164
全站排名
安装命令
npx skills add https://github.com/rstackjs/agent-skills --skill rsbuild-v2-upgrade
Agent 安装分布
opencode
6
codex
6
gemini-cli
4
github-copilot
4
kimi-cli
4
amp
4
Skill 文档
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
- 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 server.
- Run tests or smoke checks relevant to the project.
- Fix any warnings or errors surfaced by the new version.