@nuxt/schema-nightly 4.2.0-29334442.191bcb7e → 4.2.0-29335081.002c92c6
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1836,7 +1836,7 @@ interface ConfigSchema {
|
|
|
1836
1836
|
* Enable early access to future features or flags.
|
|
1837
1837
|
*
|
|
1838
1838
|
*/
|
|
1839
|
-
compatibilityVersion: 4;
|
|
1839
|
+
compatibilityVersion: 4 | 5;
|
|
1840
1840
|
/**
|
|
1841
1841
|
* This enables early access to the experimental multi-app support.
|
|
1842
1842
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -1836,7 +1836,7 @@ interface ConfigSchema {
|
|
|
1836
1836
|
* Enable early access to future features or flags.
|
|
1837
1837
|
*
|
|
1838
1838
|
*/
|
|
1839
|
-
compatibilityVersion: 4;
|
|
1839
|
+
compatibilityVersion: 4 | 5;
|
|
1840
1840
|
/**
|
|
1841
1841
|
* This enables early access to the experimental multi-app support.
|
|
1842
1842
|
*
|
package/dist/index.mjs
CHANGED
|
@@ -666,7 +666,7 @@ const experimental = defineResolvers({
|
|
|
666
666
|
future: {
|
|
667
667
|
compatibilityVersion: {
|
|
668
668
|
// force resolution to `4` no matter what users pass
|
|
669
|
-
$resolve: () => 4
|
|
669
|
+
$resolve: (val) => typeof val === "number" ? val : 4
|
|
670
670
|
},
|
|
671
671
|
multiApp: false,
|
|
672
672
|
typescriptBundlerResolution: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/schema-nightly",
|
|
3
|
-
"version": "4.2.0-
|
|
3
|
+
"version": "4.2.0-29335081.002c92c6",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"hookable": "5.5.3",
|
|
52
52
|
"ignore": "7.0.5",
|
|
53
53
|
"mini-css-extract-plugin": "2.9.4",
|
|
54
|
-
"nitropack": "2.12.
|
|
54
|
+
"nitropack": "2.12.7",
|
|
55
55
|
"ofetch": "1.4.1",
|
|
56
56
|
"oxc-transform": "0.94.0",
|
|
57
57
|
"postcss": "8.5.6",
|