vite 6.3.0-beta.0 → 6.3.0-beta.1

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.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Evan You",
@@ -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' {