vite 6.3.0-beta.0 → 6.3.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite",
3
- "version": "6.3.0-beta.0",
3
+ "version": "6.3.0-beta.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Evan You",
@@ -73,6 +73,7 @@
73
73
  "//": "READ CONTRIBUTING.md to understand what to put under deps vs. devDeps!",
74
74
  "dependencies": {
75
75
  "esbuild": "^0.25.0",
76
+ "fdir": "^6.4.3",
76
77
  "picomatch": "^4.0.2",
77
78
  "postcss": "^8.5.3",
78
79
  "rollup": "^4.34.9",
@@ -18,7 +18,10 @@ export interface CustomPluginOptionsVite {
18
18
  *
19
19
  * @experimental
20
20
  */
21
- cssScopeTo?: [importerId: string, exportName: string | undefined]
21
+ cssScopeTo?: readonly [importerId: string, exportName: string | undefined]
22
+
23
+ /** @deprecated no-op since Vite 6.1 */
24
+ lang?: string
22
25
  }
23
26
 
24
27
  declare module 'rollup' {