@nuxt/schema-nightly
Advanced tools
Comparing version 3.10.0-28412264.a7c79b8e to 3.10.0-28422008.60113b5e
@@ -573,3 +573,7 @@ import { TransitionProps, KeepAliveProps } from 'vue'; | ||
/** Provided compile option instead of src */ | ||
getContents?: (data: Options) => string | Promise<string>; | ||
getContents?: (data: { | ||
nuxt: Nuxt; | ||
app: NuxtApp; | ||
options: Options; | ||
}) => string | Promise<string>; | ||
/** Write to filesystem */ | ||
@@ -582,3 +586,4 @@ write?: boolean; | ||
} | ||
interface NuxtTypeTemplate<Options = TemplateDefaultOptions> extends Omit<NuxtTemplate<Options>, 'write'> { | ||
interface NuxtTypeTemplate<Options = TemplateDefaultOptions> extends Omit<NuxtTemplate<Options>, 'write' | 'filename'> { | ||
filename: `${string}.d.ts`; | ||
write?: true; | ||
@@ -1001,2 +1006,5 @@ } | ||
/** @default false */ | ||
scanPageMeta: boolean, | ||
defaults: { | ||
@@ -1003,0 +1011,0 @@ nuxtLink: NuxtLinkOptions, |
{ | ||
"name": "@nuxt/schema-nightly", | ||
"version": "3.10.0-28412264.a7c79b8e", | ||
"version": "3.10.0-28422008.60113b5e", | ||
"repository": { | ||
@@ -39,5 +39,5 @@ "type": "git", | ||
"@unhead/schema": "1.8.9", | ||
"@vitejs/plugin-vue": "5.0.2", | ||
"@vitejs/plugin-vue": "5.0.3", | ||
"@vitejs/plugin-vue-jsx": "3.1.0", | ||
"@vue/compiler-core": "3.4.5", | ||
"@vue/compiler-core": "3.4.13", | ||
"c12": "1.6.1", | ||
@@ -52,3 +52,3 @@ "esbuild-loader": "4.0.2", | ||
"vite": "5.0.11", | ||
"vue": "3.4.5", | ||
"vue": "3.4.13", | ||
"vue-bundle-renderer": "2.0.0", | ||
@@ -65,5 +65,5 @@ "vue-loader": "17.4.2", | ||
"hookable": "^5.5.3", | ||
"pathe": "^1.1.1", | ||
"pathe": "^1.1.2", | ||
"pkg-types": "^1.0.3", | ||
"scule": "^1.1.1", | ||
"scule": "^1.2.0", | ||
"std-env": "^3.7.0", | ||
@@ -70,0 +70,0 @@ "ufo": "^1.3.2", |
@@ -329,2 +329,5 @@ import type { ComponentsOptions } from '../src/types/components' | ||
/** @default false */ | ||
scanPageMeta: boolean, | ||
defaults: { | ||
@@ -331,0 +334,0 @@ nuxtLink: NuxtLinkOptions, |
@@ -111,2 +111,3 @@ { | ||
"inlineRouteRules": false, | ||
"scanPageMeta": false, | ||
"defaults": { | ||
@@ -113,0 +114,0 @@ "nuxtLink": { |
@@ -524,2 +524,7 @@ | ||
## `scanPageMeta` | ||
- **Type**: `boolean` | ||
- **Default**: `false` | ||
## `defaults` | ||
@@ -526,0 +531,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
309337
7720
Updatedpathe@^1.1.2
Updatedscule@^1.2.0