You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,3 +132,7 @@ Some errors are masked and hidden away because of the layers of abstraction and
132
132
In many test cases, we need to mock dependencies using `link:` and `file:` protocols. `pnpm` treats `link:` as symlinks and `file:` as hardlinks. To test dependencies as if they were copied into `node_modules`, use the `file:` protocol. Otherwise, use the `link:` protocol.
133
133
134
134
For a mock dependency, make sure you add a `@vitejs/test-` prefix to the package name. This will avoid possible issues like false-positive alerts.
135
+
136
+
## Contributing to `@vitejs/plugin-rsc`
137
+
138
+
See [CONTRIBUTING.md](packages/plugin-rsc/CONTRIBUTING.md) in the `@vitejs/plugin-rsc` package for specific guidelines on contributing to the React Server Components plugin.
Copy file name to clipboardExpand all lines: packages/plugin-react-oxc/CHANGELOG.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,20 @@
2
2
3
3
## Unreleased
4
4
5
+
## 0.4.0-beta.0 (2025-07-28)
6
+
7
+
### Deprecate this plugin
8
+
9
+
The changes of this plugin is now included in `@vitejs/plugin-react`. Please use `@vitejs/plugin-react` instead.
10
+
11
+
### Allow processing files in `node_modules`
12
+
13
+
The default value of `exclude` options is now `[/\/node_modules\//]` to allow processing files in `node_modules` directory. It was previously `[]` and files in `node_modules` was always excluded regardless of the value of `exclude` option.
14
+
15
+
### Require Node 20.19+, 22.12+
16
+
17
+
This plugin now requires Node 20.19+ or 22.12+.
18
+
5
19
## 0.3.0 (2025-07-18)
6
20
7
21
### Add HMR support for compound components ([#518](https://github.com/vitejs/vite-plugin-react/pull/518))
0 commit comments