Skip to content

Commit ca8dc80

Browse files
committed
chore: merge main
2 parents c2befdc + ddd76e0 commit ca8dc80

File tree

40 files changed

+565
-396
lines changed

40 files changed

+565
-396
lines changed

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ pnpm-lock.yaml
77
pnpm-workspace.yaml
88
playground/tsconfig-json-load-error/has-error/tsconfig.json
99
playground/html/invalid.html
10+
playground/html/invalidClick.html
11+
playground/html/invalidEscape.html
1012
playground/html/valid.html
1113
playground/external/public/[email protected]
1214
playground/ssr-html/public/[email protected]

docs/guide/troubleshooting.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@ See [Reason: CORS request not HTTP - HTTP | MDN](https://developer.mozilla.org/e
146146

147147
You will need to access the file with `http` protocol. The easiest way to achieve this is to run `npx vite preview`.
148148

149+
### No such file or directory error due to case sensitivity
150+
151+
If you encounter errors like `ENOENT: no such file or directory` or `Module not found`, this often occurs when your project was developed on a case-insensitive filesystem (Windows / macOS) but built on a case-sensitive one (Linux). Please make sure that the imports have the correct casing.
152+
149153
## Optimized Dependencies
150154

151155
### Outdated pre-bundled deps when linking to a local package

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
"docs-serve": "vitepress serve"
99
},
1010
"devDependencies": {
11-
"@shikijs/vitepress-twoslash": "^3.8.1",
11+
"@shikijs/vitepress-twoslash": "^3.9.2",
1212
"@types/express": "^5.0.3",
1313
"feed": "^5.1.0",
1414
"gsap": "^3.13.0",
1515
"markdown-it-image-size": "^14.7.0",
1616
"oxc-minify": "^0.74.0",
1717
"vitepress": "^2.0.0-alpha.9",
1818
"vitepress-plugin-group-icons": "^1.6.1",
19-
"vitepress-plugin-llms": "^1.7.1",
19+
"vitepress-plugin-llms": "^1.7.2",
2020
"vue": "^3.5.18"
2121
}
2222
}

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,26 +50,26 @@
5050
"@types/estree": "^1.0.8",
5151
"@types/etag": "^1.8.4",
5252
"@types/less": "^3.0.8",
53-
"@types/node": "^22.16.5",
54-
"@types/picomatch": "^4.0.1",
53+
"@types/node": "^22.17.0",
54+
"@types/picomatch": "^4.0.2",
5555
"@types/stylus": "^0.48.43",
5656
"@types/ws": "^8.18.1",
5757
"@vitejs/release-scripts": "^1.6.0",
5858
"eslint": "^9.32.0",
5959
"eslint-plugin-import-x": "^4.16.1",
60-
"eslint-plugin-n": "^17.21.2",
61-
"eslint-plugin-regexp": "^2.9.0",
60+
"eslint-plugin-n": "^17.21.3",
61+
"eslint-plugin-regexp": "^2.9.1",
6262
"execa": "^9.6.0",
6363
"globals": "^16.3.0",
64-
"lint-staged": "^16.1.2",
64+
"lint-staged": "^16.1.4",
6565
"picocolors": "^1.1.1",
66-
"playwright-chromium": "^1.54.1",
66+
"playwright-chromium": "^1.54.2",
6767
"prettier": "3.6.2",
6868
"rollup": "^4.43.0",
69-
"simple-git-hooks": "^2.13.0",
69+
"simple-git-hooks": "^2.13.1",
7070
"tsx": "^4.20.3",
7171
"typescript": "~5.7.2",
72-
"typescript-eslint": "^8.38.0",
72+
"typescript-eslint": "^8.39.0",
7373
"vite": "workspace:*",
7474
"vitest": "^3.2.4"
7575
},
@@ -90,7 +90,7 @@
9090
"eslint --cache --fix"
9191
]
9292
},
93-
"packageManager": "pnpm@10.13.1",
93+
"packageManager": "pnpm@10.14.0",
9494
"stackblitz": {
9595
"startCommand": "pnpm --filter='./packages/vite' run dev"
9696
}

packages/create-vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737
"cross-spawn": "^7.0.6",
3838
"mri": "^1.2.0",
3939
"picocolors": "^1.1.1",
40-
"tsdown": "^0.13.0"
40+
"tsdown": "^0.13.3"
4141
}
4242
}

packages/create-vite/template-preact-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"preact": "^10.26.9"
12+
"preact": "^10.27.0"
1313
},
1414
"devDependencies": {
1515
"@preact/preset-vite": "^2.10.2",

packages/create-vite/template-preact/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"preact": "^10.26.9"
12+
"preact": "^10.27.0"
1313
},
1414
"devDependencies": {
1515
"@preact/preset-vite": "^2.10.2",

packages/create-vite/template-react-ts/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
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": {
1717
"@eslint/js": "^9.32.0",
18-
"@types/react": "^19.1.8",
19-
"@types/react-dom": "^19.1.6",
18+
"@types/react": "^19.1.9",
19+
"@types/react-dom": "^19.1.7",
2020
"@vitejs/plugin-react": "^4.7.0",
2121
"eslint": "^9.32.0",
2222
"eslint-plugin-react-hooks": "^5.2.0",
2323
"eslint-plugin-react-refresh": "^0.4.20",
2424
"globals": "^16.3.0",
2525
"typescript": "~5.8.3",
26-
"typescript-eslint": "^8.38.0",
26+
"typescript-eslint": "^8.39.0",
2727
"vite": "npm:rolldown-vite@^7.0.12"
2828
}
2929
}

packages/create-vite/template-react/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
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": {
1717
"@eslint/js": "^9.32.0",
18-
"@types/react": "^19.1.8",
19-
"@types/react-dom": "^19.1.6",
18+
"@types/react": "^19.1.9",
19+
"@types/react-dom": "^19.1.7",
2020
"@vitejs/plugin-react": "^4.7.0",
2121
"eslint": "^9.32.0",
2222
"eslint-plugin-react-hooks": "^5.2.0",

packages/create-vite/template-solid-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"devDependencies": {
1515
"typescript": "~5.8.3",
1616
"vite": "npm:rolldown-vite@^7.0.12",
17-
"vite-plugin-solid": "^2.11.7"
17+
"vite-plugin-solid": "^2.11.8"
1818
}
1919
}

0 commit comments

Comments
 (0)