Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/create-rsbuild/template-react-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"devDependencies": {
"@rsbuild/core": "^2.0.14",
"@rsbuild/plugin-react": "^2.0.1"
"@rsbuild/plugin-react": "^2.1.0"
}
}
2 changes: 1 addition & 1 deletion packages/create-rsbuild/template-react-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"devDependencies": {
"@rsbuild/core": "^2.0.14",
"@rsbuild/plugin-react": "^2.0.1",
"@rsbuild/plugin-react": "^2.1.0",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rsbuild/plugin-react",
"version": "2.0.1",
"version": "2.1.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Require core 2.1 for the 2.1 release

When consumers keep @rsbuild/core on a 2.0.x release (the peer range still permits it, and the React templates still allow ^2.0.14), installing this newly published @rsbuild/plugin-react@2.1.0 makes the generated declarations reference Rspack.SwcLoaderTransformConfig['reactCompiler']; @rsbuild/core 2.0.x uses Rspack types where that key does not exist, so TypeScript with skipLibCheck: false fails before user code is checked even if reactCompiler is never used. Please either require/bump core to >=2.1.0 for this release or make the exported type compatible with core 2.0.x.

Useful? React with 👍 / 👎.

"description": "React plugin for Rsbuild",
"homepage": "https://rsbuild.rs",
"bugs": {
Expand Down