@nuxt/schema-nightly 4.2.2-29381404.e7fff713 → 4.2.2-29381721.51356a46

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 CHANGED
@@ -540,7 +540,7 @@ interface NuxtHooks {
540
540
  */
541
541
  'app:templates': (app: NuxtApp) => HookResult;
542
542
  /**
543
- * Called after templates are compiled into the [virtual file system](https://nuxt.com/docs/4.x/guide/directory-structure/nuxt) (vfs).
543
+ * Called after templates are compiled into the [virtual file system](https://nuxt.com/docs/4.x/directory-structure/nuxt) (vfs).
544
544
  * @param app The configured `NuxtApp` object
545
545
  * @returns Promise
546
546
  */
@@ -920,7 +920,7 @@ interface ImportsOptions extends UnimportOptions {
920
920
  autoImport?: boolean;
921
921
  /**
922
922
  * Directories to scan for auto imports.
923
- * @see https://nuxt.com/docs/4.x/guide/directory-structure/app/composables#how-files-are-scanned
923
+ * @see https://nuxt.com/docs/4.x/directory-structure/app/composables#how-files-are-scanned
924
924
  */
925
925
  dirs?: string[];
926
926
  /**
@@ -948,13 +948,13 @@ interface ConfigSchema {
948
948
  *
949
949
  * Any components in the directories configured here can be used throughout your pages, layouts (and other components) without needing to explicitly import them.
950
950
  *
951
- * @see [`components/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/app/components)
951
+ * @see [`components/` directory documentation](https://nuxt.com/docs/4.x/directory-structure/app/components)
952
952
  */
953
953
  components: boolean | ComponentsOptions | ComponentsOptions['dirs'];
954
954
  /**
955
955
  * Configure how Nuxt auto-imports composables into your application.
956
956
  *
957
- * @see [Nuxt documentation](https://nuxt.com/docs/4.x/guide/directory-structure/app/composables)
957
+ * @see [Nuxt documentation](https://nuxt.com/docs/4.x/directory-structure/app/composables)
958
958
  */
959
959
  imports: ImportsOptions;
960
960
  /**
@@ -1234,7 +1234,7 @@ interface ConfigSchema {
1234
1234
  * and these plugins do not need to be listed in `nuxt.config` unless you
1235
1235
  * need to customize their order. All plugins are deduplicated by their src path.
1236
1236
  *
1237
- * @see [`plugins/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/app/plugins)
1237
+ * @see [`plugins/` directory documentation](https://nuxt.com/docs/4.x/directory-structure/app/plugins)
1238
1238
  *
1239
1239
  * @example
1240
1240
  * ```js
@@ -2346,7 +2346,7 @@ interface ConfigSchema {
2346
2346
  * Each handler accepts the following options:
2347
2347
  * - handler: The path to the file defining the handler. - route: The route under which the handler is available. This follows the conventions of [rou3](https://github.com/h3js/rou3). - method: The HTTP method of requests that should be handled. - middleware: Specifies whether it is a middleware handler. - lazy: Specifies whether to use lazy loading to import the handler.
2348
2348
  *
2349
- * @see [`server/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/server)
2349
+ * @see [`server/` directory documentation](https://nuxt.com/docs/4.x/directory-structure/server)
2350
2350
  *
2351
2351
  * @note Files from `server/api`, `server/middleware` and `server/routes` will be automatically registered by Nuxt.
2352
2352
  *
package/dist/index.d.ts CHANGED
@@ -540,7 +540,7 @@ interface NuxtHooks {
540
540
  */
541
541
  'app:templates': (app: NuxtApp) => HookResult;
542
542
  /**
543
- * Called after templates are compiled into the [virtual file system](https://nuxt.com/docs/4.x/guide/directory-structure/nuxt) (vfs).
543
+ * Called after templates are compiled into the [virtual file system](https://nuxt.com/docs/4.x/directory-structure/nuxt) (vfs).
544
544
  * @param app The configured `NuxtApp` object
545
545
  * @returns Promise
546
546
  */
@@ -920,7 +920,7 @@ interface ImportsOptions extends UnimportOptions {
920
920
  autoImport?: boolean;
921
921
  /**
922
922
  * Directories to scan for auto imports.
923
- * @see https://nuxt.com/docs/4.x/guide/directory-structure/app/composables#how-files-are-scanned
923
+ * @see https://nuxt.com/docs/4.x/directory-structure/app/composables#how-files-are-scanned
924
924
  */
925
925
  dirs?: string[];
926
926
  /**
@@ -948,13 +948,13 @@ interface ConfigSchema {
948
948
  *
949
949
  * Any components in the directories configured here can be used throughout your pages, layouts (and other components) without needing to explicitly import them.
950
950
  *
951
- * @see [`components/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/app/components)
951
+ * @see [`components/` directory documentation](https://nuxt.com/docs/4.x/directory-structure/app/components)
952
952
  */
953
953
  components: boolean | ComponentsOptions | ComponentsOptions['dirs'];
954
954
  /**
955
955
  * Configure how Nuxt auto-imports composables into your application.
956
956
  *
957
- * @see [Nuxt documentation](https://nuxt.com/docs/4.x/guide/directory-structure/app/composables)
957
+ * @see [Nuxt documentation](https://nuxt.com/docs/4.x/directory-structure/app/composables)
958
958
  */
959
959
  imports: ImportsOptions;
960
960
  /**
@@ -1234,7 +1234,7 @@ interface ConfigSchema {
1234
1234
  * and these plugins do not need to be listed in `nuxt.config` unless you
1235
1235
  * need to customize their order. All plugins are deduplicated by their src path.
1236
1236
  *
1237
- * @see [`plugins/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/app/plugins)
1237
+ * @see [`plugins/` directory documentation](https://nuxt.com/docs/4.x/directory-structure/app/plugins)
1238
1238
  *
1239
1239
  * @example
1240
1240
  * ```js
@@ -2346,7 +2346,7 @@ interface ConfigSchema {
2346
2346
  * Each handler accepts the following options:
2347
2347
  * - handler: The path to the file defining the handler. - route: The route under which the handler is available. This follows the conventions of [rou3](https://github.com/h3js/rou3). - method: The HTTP method of requests that should be handled. - middleware: Specifies whether it is a middleware handler. - lazy: Specifies whether to use lazy loading to import the handler.
2348
2348
  *
2349
- * @see [`server/` directory documentation](https://nuxt.com/docs/4.x/guide/directory-structure/server)
2349
+ * @see [`server/` directory documentation](https://nuxt.com/docs/4.x/directory-structure/server)
2350
2350
  *
2351
2351
  * @note Files from `server/api`, `server/middleware` and `server/routes` will be automatically registered by Nuxt.
2352
2352
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/schema-nightly",
3
- "version": "4.2.2-29381404.e7fff713",
3
+ "version": "4.2.2-29381721.51356a46",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",
@@ -37,14 +37,14 @@
37
37
  "@unhead/vue": "2.0.19",
38
38
  "@vitejs/plugin-vue": "6.0.1",
39
39
  "@vitejs/plugin-vue-jsx": "5.1.1",
40
- "@vue/compiler-core": "3.5.23",
41
- "@vue/compiler-sfc": "3.5.23",
40
+ "@vue/compiler-core": "3.5.24",
41
+ "@vue/compiler-sfc": "3.5.24",
42
42
  "@vue/language-core": "3.1.3",
43
- "c12": "3.3.1",
43
+ "c12": "3.3.2",
44
44
  "chokidar": "4.0.3",
45
45
  "compatx": "0.2.0",
46
46
  "css-minimizer-webpack-plugin": "7.0.2",
47
- "esbuild": "0.25.12",
47
+ "esbuild": "0.27.0",
48
48
  "esbuild-loader": "4.4.0",
49
49
  "file-loader": "6.2.0",
50
50
  "h3": "1.15.4",
@@ -53,7 +53,7 @@
53
53
  "mini-css-extract-plugin": "2.9.4",
54
54
  "nitropack": "2.12.9",
55
55
  "ofetch": "1.5.1",
56
- "oxc-transform": "0.96.0",
56
+ "oxc-transform": "0.97.0",
57
57
  "postcss": "8.5.6",
58
58
  "rollup-plugin-visualizer": "6.0.5",
59
59
  "sass-loader": "16.0.6",
@@ -62,8 +62,8 @@
62
62
  "unctx": "2.4.1",
63
63
  "unimport": "5.5.0",
64
64
  "untyped": "2.0.0",
65
- "vite": "7.2.1",
66
- "vue": "3.5.23",
65
+ "vite": "7.2.2",
66
+ "vue": "3.5.24",
67
67
  "vue-bundle-renderer": "2.2.0",
68
68
  "vue-loader": "17.4.2",
69
69
  "vue-router": "4.6.3",
@@ -71,7 +71,7 @@
71
71
  "webpack-dev-middleware": "7.4.5"
72
72
  },
73
73
  "dependencies": {
74
- "@vue/shared": "^3.5.23",
74
+ "@vue/shared": "^3.5.24",
75
75
  "defu": "^6.1.4",
76
76
  "pathe": "^2.0.3",
77
77
  "pkg-types": "^2.3.0",