rstackjs/agent-skills

rspack-v2-upgrade

Use when upgrading a Rspack 1.x project to v2, including dependency and configuration updates.

First seen Feb 26, 2026

Installation

$ npx skills add rstackjs/agent-skills --skill rspack-v2-upgrade

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from rstackjs/agent-skills · top by installs.

npx skills add rstackjs/agent-skills

Browse all from rstackjs/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 93
License LICENSE
Default branch main
Open issues 2
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,211 B
  • docs SUMMARY.md 1,142 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 475 installs

SKILL.md

Rspack 1.x to v2 Upgrade

Workflow

  1. Confirm current setup

- Read package.json to identify Rspack packages in use. - Locate the Rspack config file (commonly rspack.config.(ts|js|mjs|cjs)).

  1. Open the official migration guide

- Use the official guide as the single source of truth: - https://rspack.rs/guide/migration/rspack_1.x

  1. Plan required changes

- 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.

  1. Update dependencies

- Upgrade Rspack packages to v2: @rspack/core, @rspack/cli, @rspack/dev-server, @rspack/plugin-react-refresh.

  1. Apply migration changes

- Update the Rspack config and related code according to the official guide. - Remove deprecated or unsupported options.

  1. Validate

- Run build and dev commands. - Run project tests or type checks. - Fix any warnings or errors surfaced by the new version.