@nuxt/schema-nightly
Advanced tools
Comparing version 3.11.0-28508703.2baaab98 to 3.11.0-28508797.81933dfc
{ | ||
"name": "@nuxt/schema-nightly", | ||
"version": "3.11.0-28508703.2baaab98", | ||
"version": "3.11.0-28508797.81933dfc", | ||
"repository": { | ||
@@ -38,3 +38,3 @@ "type": "git", | ||
"@types/sass-loader": "8.0.8", | ||
"@unhead/schema": "1.8.12", | ||
"@unhead/schema": "1.8.18", | ||
"@vitejs/plugin-vue": "5.0.4", | ||
@@ -48,3 +48,3 @@ "@vitejs/plugin-vue-jsx": "3.1.0", | ||
"ignore": "5.3.1", | ||
"nitropack": "2.9.3", | ||
"nitropack": "2.9.4", | ||
"ofetch": "1.3.3", | ||
@@ -54,3 +54,3 @@ "unbuild": "latest", | ||
"unenv": "1.9.0", | ||
"vite": "5.1.5", | ||
"vite": "5.1.6", | ||
"vue": "3.4.21", | ||
@@ -72,3 +72,3 @@ "vue-bundle-renderer": "2.0.0", | ||
"std-env": "^3.7.0", | ||
"ufo": "^1.4.0", | ||
"ufo": "^1.5.0", | ||
"unimport": "^3.7.1", | ||
@@ -75,0 +75,0 @@ "untyped": "^1.4.2" |
@@ -1109,3 +1109,3 @@ import type { ComponentsOptions } from '../src/types/components' | ||
/** | ||
* Experimental component islands support with <NuxtIsland> and .island.vue files. | ||
* Experimental component islands support with `<NuxtIsland>` and `.island.vue` files. | ||
* | ||
@@ -1488,2 +1488,9 @@ * By default it is set to 'auto', which means it will be enabled only when there are islands, server components or server pages in your app. | ||
/** | ||
* Modules to generate deep aliases for within `compilerOptions.paths`. This does not yet support subpaths. It may be necessary when using Nuxt within a pnpm monorepo with `shamefully-hoist=false`. | ||
* | ||
* @default ["nitropack","defu","h3","@unhead/vue","vue","vue-router","@nuxt/schema"] | ||
*/ | ||
hoist: Array<string>, | ||
/** | ||
* Include parent workspace in the Nuxt project. Mostly useful for themes and module authors. | ||
@@ -1490,0 +1497,0 @@ * |
@@ -27,3 +27,3 @@ { | ||
}, | ||
"publicDir": "/<srcDir>/public", | ||
"publicDir": false, | ||
"vue": { | ||
@@ -341,2 +341,11 @@ "isProduction": true, | ||
"builder": null, | ||
"hoist": [ | ||
"nitropack", | ||
"defu", | ||
"h3", | ||
"@unhead/vue", | ||
"vue", | ||
"vue-router", | ||
"@nuxt/schema" | ||
], | ||
"includeWorkspace": false, | ||
@@ -343,0 +352,0 @@ "typeCheck": false, |
@@ -750,3 +750,3 @@ | ||
> Experimental component islands support with <NuxtIsland> and .island.vue files. | ||
> Experimental component islands support with `<NuxtIsland>` and `.island.vue` files. | ||
@@ -1059,2 +1059,9 @@ | ||
## `hoist` | ||
- **Type**: `array` | ||
- **Default**: `["nitropack","defu","h3","@unhead/vue","vue","vue-router","@nuxt/schema"]` | ||
> Modules to generate deep aliases for within `compilerOptions.paths`. This does not yet support subpaths. It may be necessary when using Nuxt within a pnpm monorepo with `shamefully-hoist=false`. | ||
## `includeWorkspace` | ||
@@ -1111,4 +1118,4 @@ - **Type**: `boolean` | ||
## `publicDir` | ||
- **Type**: `string` | ||
- **Default**: `"/<srcDir>/public"` | ||
- **Type**: `boolean` | ||
- **Default**: `false` | ||
@@ -1115,0 +1122,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
497560
10797
Updatedufo@^1.5.0