Skip to content

Commit b0c9fbd

Browse files
committed
Merge branch 'main' into 07-28-fix_rsc_show_warning_when_auto_css_heuristics_failed
2 parents d648f12 + 556de15 commit b0c9fbd

File tree

97 files changed

+2800
-921
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+2800
-921
lines changed

.github/workflows/ci-rsc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,4 @@ jobs:
8383
name: test-results-${{ matrix.os }}-${{ matrix.browser }}${{ matrix.rolldown == true && '-rolldown' || '' }}${{ matrix.react_version && format('-react-{0}', matrix.react_version) || '' }}
8484
path: |
8585
packages/plugin-rsc/test-results
86+
if-no-files-found: ignore
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# https://docs.github.com/en/copilot/how-tos/use-copilot-agents/coding-agent/customize-the-agent-environment
2+
3+
name: "Copilot Setup Steps"
4+
5+
on:
6+
workflow_dispatch:
7+
push:
8+
paths:
9+
- .github/workflows/copilot-setup-steps.yml
10+
pull_request:
11+
paths:
12+
- .github/workflows/copilot-setup-steps.yml
13+
14+
jobs:
15+
copilot-setup-steps:
16+
runs-on: ubuntu-latest
17+
18+
permissions:
19+
contents: read
20+
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-node@v4
24+
with:
25+
node-version: 22
26+
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
27+
- run: pnpm i
28+
- run: pnpm exec playwright install chromium

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"engines": {
66
"node": "^20.19.0 || >=22.12.0"
77
},
8-
"packageManager": "pnpm@10.13.1",
8+
"packageManager": "pnpm@10.14.0",
99
"homepage": "https://github.com/vitejs/vite-plugin-react/",
1010
"keywords": [
1111
"frontend",
@@ -35,21 +35,21 @@
3535
"devDependencies": {
3636
"@eslint/js": "^9.32.0",
3737
"@types/fs-extra": "^11.0.4",
38-
"@types/node": "^22.16.5",
38+
"@types/node": "^22.17.0",
3939
"@vitejs/release-scripts": "^1.6.0",
4040
"eslint": "^9.32.0",
4141
"eslint-plugin-import-x": "^4.16.1",
42-
"eslint-plugin-n": "^17.21.2",
43-
"eslint-plugin-regexp": "^2.9.0",
42+
"eslint-plugin-n": "^17.21.3",
43+
"eslint-plugin-regexp": "^2.9.1",
4444
"fs-extra": "^11.3.0",
4545
"globals": "^16.3.0",
4646
"lint-staged": "^15.5.2",
4747
"picocolors": "^1.1.1",
48-
"playwright-chromium": "^1.54.1",
48+
"playwright-chromium": "^1.54.2",
4949
"prettier": "^3.6.2",
50-
"simple-git-hooks": "^2.13.0",
50+
"simple-git-hooks": "^2.13.1",
5151
"tsx": "^4.20.3",
52-
"typescript": "^5.8.3",
52+
"typescript": "^5.9.2",
5353
"typescript-eslint": "^8.38.0",
5454
"vite": "^7.0.6",
5555
"vitest": "^3.2.4"

packages/plugin-react-oxc/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
},
4444
"devDependencies": {
4545
"@vitejs/react-common": "workspace:*",
46-
"tsdown": "^0.13.0",
46+
"tsdown": "^0.13.2",
4747
"vite": "catalog:rolldown-vite"
4848
},
4949
"dependencies": {
50-
"@rolldown/pluginutils": "1.0.0-beta.29"
50+
"@rolldown/pluginutils": "1.0.0-beta.30"
5151
}
5252
}

packages/plugin-react-swc/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@
3232
},
3333
"homepage": "https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react-swc#readme",
3434
"dependencies": {
35-
"@rolldown/pluginutils": "1.0.0-beta.29",
35+
"@rolldown/pluginutils": "1.0.0-beta.30",
3636
"@swc/core": "^1.13.2"
3737
},
3838
"peerDependencies": {
3939
"vite": "^4 || ^5 || ^6 || ^7"
4040
},
4141
"devDependencies": {
42-
"@playwright/test": "^1.54.1",
42+
"@playwright/test": "^1.54.2",
4343
"@types/fs-extra": "^11.0.4",
44-
"@types/node": "^22.16.5",
44+
"@types/node": "^22.17.0",
4545
"@vitejs/react-common": "workspace:*",
4646
"fs-extra": "^11.3.0",
4747
"prettier": "^3.0.3",
48-
"tsdown": "^0.13.0",
49-
"typescript": "^5.8.3"
48+
"tsdown": "^0.13.2",
49+
"typescript": "^5.9.2"
5050
}
5151
}

packages/plugin-react-swc/playground/base-path/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"react": "^19.1.0",
12-
"react-dom": "^19.1.0"
11+
"react": "^19.1.1",
12+
"react-dom": "^19.1.1"
1313
},
1414
"devDependencies": {
15-
"@types/react": "^19.1.8",
16-
"@types/react-dom": "^19.1.6",
15+
"@types/react": "^19.1.9",
16+
"@types/react-dom": "^19.1.7",
1717
"@vitejs/plugin-react-swc": "../../dist"
1818
}
1919
}

packages/plugin-react-swc/playground/class-components/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"react": "^19.1.0",
12-
"react-dom": "^19.1.0"
11+
"react": "^19.1.1",
12+
"react-dom": "^19.1.1"
1313
},
1414
"devDependencies": {
15-
"@types/react": "^19.1.8",
16-
"@types/react-dom": "^19.1.6",
15+
"@types/react": "^19.1.9",
16+
"@types/react-dom": "^19.1.7",
1717
"@vitejs/plugin-react-swc": "../../dist"
1818
}
1919
}

packages/plugin-react-swc/playground/decorators/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"react": "^19.1.0",
12-
"react-dom": "^19.1.0"
11+
"react": "^19.1.1",
12+
"react-dom": "^19.1.1"
1313
},
1414
"devDependencies": {
15-
"@types/react": "^19.1.8",
16-
"@types/react-dom": "^19.1.6",
15+
"@types/react": "^19.1.9",
16+
"@types/react-dom": "^19.1.7",
1717
"@vitejs/plugin-react-swc": "../../dist"
1818
}
1919
}

packages/plugin-react-swc/playground/emotion-plugin/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"dependencies": {
1111
"@emotion/react": "^11.14.0",
1212
"@emotion/styled": "^11.14.1",
13-
"react": "^19.1.0",
14-
"react-dom": "^19.1.0"
13+
"react": "^19.1.1",
14+
"react-dom": "^19.1.1"
1515
},
1616
"devDependencies": {
17-
"@types/react": "^19.1.8",
18-
"@types/react-dom": "^19.1.6",
17+
"@types/react": "^19.1.9",
18+
"@types/react-dom": "^19.1.7",
1919
"@vitejs/plugin-react-swc": "../../dist",
2020
"@swc/plugin-emotion": "^11.0.0"
2121
}

packages/plugin-react-swc/playground/emotion/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"dependencies": {
1111
"@emotion/react": "^11.14.0",
1212
"@emotion/styled": "^11.14.1",
13-
"react": "^19.1.0",
14-
"react-dom": "^19.1.0"
13+
"react": "^19.1.1",
14+
"react-dom": "^19.1.1"
1515
},
1616
"devDependencies": {
17-
"@types/react": "^19.1.8",
18-
"@types/react-dom": "^19.1.6",
17+
"@types/react": "^19.1.9",
18+
"@types/react-dom": "^19.1.7",
1919
"@vitejs/plugin-react-swc": "../../dist"
2020
}
2121
}

0 commit comments

Comments
 (0)