@nuxt/kit-nightly 4.3.0-29465977.c4f46c64 → 4.3.0-29466366.fa21bb17
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 +406 -383
- package/dist/index.mjs +1753 -1762
- package/package.json +6 -10
- package/dist/index.d.ts +0 -561
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/kit-nightly",
|
|
3
|
-
"version": "4.3.0-
|
|
3
|
+
"version": "4.3.0-29466366.fa21bb17",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -10,13 +10,9 @@
|
|
|
10
10
|
"description": "Toolkit for authoring modules and interacting with Nuxt",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"type": "module",
|
|
13
|
-
"types": "./dist/index.d.
|
|
13
|
+
"types": "./dist/index.d.mts",
|
|
14
14
|
"exports": {
|
|
15
|
-
".":
|
|
16
|
-
"types": "./dist/index.d.ts",
|
|
17
|
-
"import": "./dist/index.mjs",
|
|
18
|
-
"require": "./dist/index.mjs"
|
|
19
|
-
},
|
|
15
|
+
".": "./dist/index.mjs",
|
|
20
16
|
"./package.json": "./package.json"
|
|
21
17
|
},
|
|
22
18
|
"files": [
|
|
@@ -45,13 +41,13 @@
|
|
|
45
41
|
"untyped": "^2.0.0"
|
|
46
42
|
},
|
|
47
43
|
"devDependencies": {
|
|
48
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-
|
|
44
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-29466366.fa21bb17",
|
|
49
45
|
"@rspack/core": "1.7.1",
|
|
50
46
|
"@types/semver": "7.7.1",
|
|
51
47
|
"hookable": "5.5.3",
|
|
52
48
|
"nitro": "3.0.1-alpha.1",
|
|
53
49
|
"nitropack": "2.12.9",
|
|
54
|
-
"
|
|
50
|
+
"obuild": "0.4.14",
|
|
55
51
|
"unimport": "5.6.0",
|
|
56
52
|
"vite": "7.3.0",
|
|
57
53
|
"vitest": "3.2.4",
|
|
@@ -62,7 +58,7 @@
|
|
|
62
58
|
},
|
|
63
59
|
"_name": "@nuxt/kit",
|
|
64
60
|
"scripts": {
|
|
65
|
-
"build:stub": "
|
|
61
|
+
"build:stub": "obuild --stub",
|
|
66
62
|
"test:attw": "attw --pack"
|
|
67
63
|
}
|
|
68
64
|
}
|
package/dist/index.d.ts
DELETED
|
@@ -1,561 +0,0 @@
|
|
|
1
|
-
import { ModuleOptions, ModuleDefinition, NuxtModule, NuxtConfig, Nuxt, ModuleMeta, NuxtOptions, SchemaDefinition, NuxtAppConfig, NuxtCompatibility, NuxtCompatibilityIssues, Component, ComponentsDir, NuxtTemplate, NuxtMiddleware, NuxtHooks, NuxtPlugin, NuxtPluginTemplate, ResolvedNuxtTemplate, NuxtServerTemplate, NuxtTypeTemplate } from '@nuxt/schema';
|
|
2
|
-
import { LoadConfigOptions } from 'c12';
|
|
3
|
-
import { Import, InlinePreset } from 'unimport';
|
|
4
|
-
import { WebpackPluginInstance, Configuration } from 'webpack';
|
|
5
|
-
import { RspackPluginInstance } from '@rspack/core';
|
|
6
|
-
import { Plugin, UserConfig } from 'vite';
|
|
7
|
-
import { UseContext } from 'unctx';
|
|
8
|
-
import * as NitroV2 from 'nitropack/types';
|
|
9
|
-
import * as NitroV3 from 'nitro/types';
|
|
10
|
-
import { GlobOptions } from 'tinyglobby';
|
|
11
|
-
import { ConsolaInstance, ConsolaOptions } from 'consola';
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Define a Nuxt module, automatically merging defaults with user provided options, installing
|
|
15
|
-
* any hooks that are provided, and calling an optional setup function for full control.
|
|
16
|
-
*/
|
|
17
|
-
declare function defineNuxtModule<TOptions extends ModuleOptions>(definition: ModuleDefinition<TOptions, Partial<TOptions>, false> | NuxtModule<TOptions, Partial<TOptions>, false>): NuxtModule<TOptions, TOptions, false>;
|
|
18
|
-
declare function defineNuxtModule<TOptions extends ModuleOptions>(): {
|
|
19
|
-
with: <TOptionsDefaults extends Partial<TOptions>>(definition: ModuleDefinition<TOptions, TOptionsDefaults, true> | NuxtModule<TOptions, TOptionsDefaults, true>) => NuxtModule<TOptions, TOptionsDefaults, true>;
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
type ModuleToInstall = string | NuxtModule<ModuleOptions, Partial<ModuleOptions>, false>;
|
|
23
|
-
/**
|
|
24
|
-
* Installs a set of modules on a Nuxt instance.
|
|
25
|
-
* @internal
|
|
26
|
-
*/
|
|
27
|
-
declare function installModules(modulesToInstall: Map<ModuleToInstall, Record<string, any>>, resolvedModulePaths: Set<string>, nuxt?: Nuxt): Promise<void>;
|
|
28
|
-
/**
|
|
29
|
-
* Installs a module on a Nuxt instance.
|
|
30
|
-
* @deprecated Use module dependencies.
|
|
31
|
-
*/
|
|
32
|
-
declare function installModule<T extends string | NuxtModule, Config extends Extract<NonNullable<NuxtConfig['modules']>[number], [T, any]>>(moduleToInstall: T, inlineOptions?: [Config] extends [never] ? any : Config[1], nuxt?: Nuxt): Promise<void>;
|
|
33
|
-
declare function resolveModuleWithOptions(definition: NuxtModule<any> | string | false | undefined | null | [(NuxtModule | string)?, Record<string, any>?], nuxt: Nuxt): {
|
|
34
|
-
resolvedPath?: string;
|
|
35
|
-
module: string | NuxtModule<any>;
|
|
36
|
-
options: Record<string, any>;
|
|
37
|
-
} | undefined;
|
|
38
|
-
declare function loadNuxtModuleInstance(nuxtModule: string | NuxtModule, nuxt?: Nuxt): Promise<{
|
|
39
|
-
nuxtModule: NuxtModule<any>;
|
|
40
|
-
buildTimeModuleMeta: ModuleMeta;
|
|
41
|
-
resolvedModulePath?: string;
|
|
42
|
-
}>;
|
|
43
|
-
declare function getDirectory(p: string): string;
|
|
44
|
-
declare const normalizeModuleTranspilePath: (p: string) => string;
|
|
45
|
-
|
|
46
|
-
/**
|
|
47
|
-
* Check if a Nuxt module is installed by name.
|
|
48
|
-
*
|
|
49
|
-
* This will check both the installed modules and the modules to be installed. Note
|
|
50
|
-
* that it cannot detect if a module is _going to be_ installed programmatically by another module.
|
|
51
|
-
*/
|
|
52
|
-
declare function hasNuxtModule(moduleName: string, nuxt?: Nuxt): boolean;
|
|
53
|
-
/**
|
|
54
|
-
* Checks if a Nuxt module is compatible with a given semver version.
|
|
55
|
-
*/
|
|
56
|
-
declare function hasNuxtModuleCompatibility(module: string | NuxtModule, semverVersion: string, nuxt?: Nuxt): Promise<boolean>;
|
|
57
|
-
/**
|
|
58
|
-
* Get the version of a Nuxt module.
|
|
59
|
-
*
|
|
60
|
-
* Scans installed modules for the version, if it's not found it will attempt to load the module instance and get the version from there.
|
|
61
|
-
*/
|
|
62
|
-
declare function getNuxtModuleVersion(module: string | NuxtModule, nuxt?: Nuxt | any): Promise<string | false>;
|
|
63
|
-
|
|
64
|
-
interface LoadNuxtConfigOptions extends Omit<LoadConfigOptions<NuxtConfig>, 'overrides'> {
|
|
65
|
-
overrides?: Exclude<LoadConfigOptions<NuxtConfig>['overrides'], Promise<any> | Function>;
|
|
66
|
-
}
|
|
67
|
-
declare function loadNuxtConfig(opts: LoadNuxtConfigOptions): Promise<NuxtOptions>;
|
|
68
|
-
|
|
69
|
-
declare function extendNuxtSchema(def: SchemaDefinition | (() => SchemaDefinition)): void;
|
|
70
|
-
|
|
71
|
-
interface LoadNuxtOptions extends LoadNuxtConfigOptions {
|
|
72
|
-
/** Load nuxt with development mode */
|
|
73
|
-
dev?: boolean;
|
|
74
|
-
/** Use lazy initialization of nuxt if set to false */
|
|
75
|
-
ready?: boolean;
|
|
76
|
-
}
|
|
77
|
-
declare function loadNuxt(opts: LoadNuxtOptions): Promise<Nuxt>;
|
|
78
|
-
declare function buildNuxt(nuxt: Nuxt): Promise<any>;
|
|
79
|
-
|
|
80
|
-
interface LayerDirectories {
|
|
81
|
-
/** Nuxt rootDir (`/` by default) */
|
|
82
|
-
readonly root: string;
|
|
83
|
-
/** Nitro source directory (`/server` by default) */
|
|
84
|
-
readonly server: string;
|
|
85
|
-
/** Local modules directory (`/modules` by default) */
|
|
86
|
-
readonly modules: string;
|
|
87
|
-
/** Shared directory (`/shared` by default) */
|
|
88
|
-
readonly shared: string;
|
|
89
|
-
/** Public directory (`/public` by default) */
|
|
90
|
-
readonly public: string;
|
|
91
|
-
/** Nuxt srcDir (`/app/` by default) */
|
|
92
|
-
readonly app: string;
|
|
93
|
-
/** Layouts directory (`/app/layouts` by default) */
|
|
94
|
-
readonly appLayouts: string;
|
|
95
|
-
/** Middleware directory (`/app/middleware` by default) */
|
|
96
|
-
readonly appMiddleware: string;
|
|
97
|
-
/** Pages directory (`/app/pages` by default) */
|
|
98
|
-
readonly appPages: string;
|
|
99
|
-
/** Plugins directory (`/app/plugins` by default) */
|
|
100
|
-
readonly appPlugins: string;
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* Get the resolved directory paths for all layers in a Nuxt application.
|
|
104
|
-
*
|
|
105
|
-
* Returns an array of LayerDirectories objects, ordered by layer priority:
|
|
106
|
-
* - The first layer is the user/project layer (highest priority)
|
|
107
|
-
* - Earlier layers override later layers in the array
|
|
108
|
-
* - Base layers appear last in the array (lowest priority)
|
|
109
|
-
*
|
|
110
|
-
* @param nuxt - The Nuxt instance to get layers from. Defaults to the current Nuxt context.
|
|
111
|
-
* @returns Array of LayerDirectories objects, ordered by priority (user layer first)
|
|
112
|
-
*/
|
|
113
|
-
declare function getLayerDirectories(nuxt?: Nuxt): LayerDirectories[];
|
|
114
|
-
|
|
115
|
-
declare function setGlobalHead(head: NuxtAppConfig['head']): void;
|
|
116
|
-
|
|
117
|
-
declare function addImports(imports: Import | Import[]): void;
|
|
118
|
-
declare function addImportsDir(dirs: string | string[], opts?: {
|
|
119
|
-
prepend?: boolean;
|
|
120
|
-
}): void;
|
|
121
|
-
declare function addImportsSources(presets: InlinePreset | InlinePreset[]): void;
|
|
122
|
-
|
|
123
|
-
/**
|
|
124
|
-
* Access 'resolved' Nuxt runtime configuration, with values updated from environment.
|
|
125
|
-
*
|
|
126
|
-
* This mirrors the runtime behavior of Nitro.
|
|
127
|
-
*/
|
|
128
|
-
declare function useRuntimeConfig(): Record<string, any>;
|
|
129
|
-
/**
|
|
130
|
-
* Update Nuxt runtime configuration.
|
|
131
|
-
*/
|
|
132
|
-
declare function updateRuntimeConfig(runtimeConfig: Record<string, unknown>): void | Promise<void>;
|
|
133
|
-
|
|
134
|
-
type Arrayable<T> = T | T[];
|
|
135
|
-
type Thenable<T> = T | Promise<T>;
|
|
136
|
-
interface ExtendConfigOptions {
|
|
137
|
-
/**
|
|
138
|
-
* Install plugin on dev
|
|
139
|
-
* @default true
|
|
140
|
-
*/
|
|
141
|
-
dev?: boolean;
|
|
142
|
-
/**
|
|
143
|
-
* Install plugin on build
|
|
144
|
-
* @default true
|
|
145
|
-
*/
|
|
146
|
-
build?: boolean;
|
|
147
|
-
/**
|
|
148
|
-
* Install plugin on server side
|
|
149
|
-
* @default true
|
|
150
|
-
*/
|
|
151
|
-
server?: boolean;
|
|
152
|
-
/**
|
|
153
|
-
* Install plugin on client side
|
|
154
|
-
* @default true
|
|
155
|
-
*/
|
|
156
|
-
client?: boolean;
|
|
157
|
-
/**
|
|
158
|
-
* Prepends the plugin to the array with `unshift()` instead of `push()`.
|
|
159
|
-
*/
|
|
160
|
-
prepend?: boolean;
|
|
161
|
-
}
|
|
162
|
-
interface ExtendWebpackConfigOptions extends ExtendConfigOptions {
|
|
163
|
-
}
|
|
164
|
-
interface ExtendViteConfigOptions extends Omit<ExtendConfigOptions, 'server' | 'client'> {
|
|
165
|
-
/**
|
|
166
|
-
* Extend server Vite configuration
|
|
167
|
-
* @default true
|
|
168
|
-
* @deprecated calling \`extendViteConfig\` with only server/client environment is deprecated.
|
|
169
|
-
* Nuxt 5+ uses the Vite Environment API which shares a configuration between environments.
|
|
170
|
-
* You can likely use a Vite plugin to achieve the same result.
|
|
171
|
-
*/
|
|
172
|
-
server?: boolean;
|
|
173
|
-
/**
|
|
174
|
-
* Extend client Vite configuration
|
|
175
|
-
* @default true
|
|
176
|
-
* @deprecated calling \`extendViteConfig\` with only server/client environment is deprecated.
|
|
177
|
-
* Nuxt 5+ uses the Vite Environment API which shares a configuration between environments.
|
|
178
|
-
* You can likely use a Vite plugin to achieve the same result.
|
|
179
|
-
*/
|
|
180
|
-
client?: boolean;
|
|
181
|
-
}
|
|
182
|
-
type ExtendWebpacklikeConfig = (fn: (config: Configuration) => void, options?: ExtendWebpackConfigOptions) => void;
|
|
183
|
-
/**
|
|
184
|
-
* Extend webpack config
|
|
185
|
-
*
|
|
186
|
-
* The fallback function might be called multiple times
|
|
187
|
-
* when applying to both client and server builds.
|
|
188
|
-
*/
|
|
189
|
-
declare const extendWebpackConfig: ExtendWebpacklikeConfig;
|
|
190
|
-
/**
|
|
191
|
-
* Extend rspack config
|
|
192
|
-
*
|
|
193
|
-
* The fallback function might be called multiple times
|
|
194
|
-
* when applying to both client and server builds.
|
|
195
|
-
*/
|
|
196
|
-
declare const extendRspackConfig: ExtendWebpacklikeConfig;
|
|
197
|
-
/**
|
|
198
|
-
* Extend Vite config
|
|
199
|
-
*/
|
|
200
|
-
declare function extendViteConfig(fn: ((config: UserConfig) => Thenable<void>), options?: ExtendViteConfigOptions): (() => void) | undefined;
|
|
201
|
-
/**
|
|
202
|
-
* Append webpack plugin to the config.
|
|
203
|
-
*/
|
|
204
|
-
declare function addWebpackPlugin(pluginOrGetter: Arrayable<WebpackPluginInstance> | (() => Thenable<Arrayable<WebpackPluginInstance>>), options?: ExtendWebpackConfigOptions): void;
|
|
205
|
-
/**
|
|
206
|
-
* Append rspack plugin to the config.
|
|
207
|
-
*/
|
|
208
|
-
declare function addRspackPlugin(pluginOrGetter: Arrayable<RspackPluginInstance> | (() => Thenable<Arrayable<RspackPluginInstance>>), options?: ExtendWebpackConfigOptions): void;
|
|
209
|
-
/**
|
|
210
|
-
* Append Vite plugin to the config.
|
|
211
|
-
*/
|
|
212
|
-
declare function addVitePlugin(pluginOrGetter: Arrayable<Plugin> | (() => Thenable<Arrayable<Plugin>>), options?: ExtendConfigOptions): void;
|
|
213
|
-
interface AddBuildPluginFactory {
|
|
214
|
-
vite?: () => Thenable<Arrayable<Plugin>>;
|
|
215
|
-
webpack?: () => Thenable<Arrayable<WebpackPluginInstance>>;
|
|
216
|
-
rspack?: () => Thenable<Arrayable<RspackPluginInstance>>;
|
|
217
|
-
}
|
|
218
|
-
declare function addBuildPlugin(pluginFactory: AddBuildPluginFactory, options?: ExtendConfigOptions): void;
|
|
219
|
-
|
|
220
|
-
declare function normalizeSemanticVersion(version: string): string;
|
|
221
|
-
/**
|
|
222
|
-
* Check version constraints and return incompatibility issues as an array
|
|
223
|
-
*/
|
|
224
|
-
declare function checkNuxtCompatibility(constraints: NuxtCompatibility, nuxt?: Nuxt): Promise<NuxtCompatibilityIssues>;
|
|
225
|
-
/**
|
|
226
|
-
* Check version constraints and throw a detailed error if has any, otherwise returns true
|
|
227
|
-
*/
|
|
228
|
-
declare function assertNuxtCompatibility(constraints: NuxtCompatibility, nuxt?: Nuxt): Promise<true>;
|
|
229
|
-
/**
|
|
230
|
-
* Check version constraints and return true if passed, otherwise returns false
|
|
231
|
-
*/
|
|
232
|
-
declare function hasNuxtCompatibility(constraints: NuxtCompatibility, nuxt?: Nuxt): Promise<boolean>;
|
|
233
|
-
type NuxtMajorVersion = 2 | 3 | 4;
|
|
234
|
-
/**
|
|
235
|
-
* Check if current Nuxt instance is of specified major version
|
|
236
|
-
*/
|
|
237
|
-
declare function isNuxtMajorVersion(majorVersion: NuxtMajorVersion, nuxt?: Nuxt): boolean;
|
|
238
|
-
/**
|
|
239
|
-
* @deprecated Use `isNuxtMajorVersion(2, nuxt)` instead. This may be removed in \@nuxt/kit v5 or a future major version.
|
|
240
|
-
*/
|
|
241
|
-
declare function isNuxt2(nuxt?: Nuxt): boolean;
|
|
242
|
-
/**
|
|
243
|
-
* @deprecated Use `isNuxtMajorVersion(3, nuxt)` instead. This may be removed in \@nuxt/kit v5 or a future major version.
|
|
244
|
-
*/
|
|
245
|
-
declare function isNuxt3(nuxt?: Nuxt): boolean;
|
|
246
|
-
/**
|
|
247
|
-
* Get nuxt version
|
|
248
|
-
*/
|
|
249
|
-
declare function getNuxtVersion(nuxt?: Nuxt | any): string;
|
|
250
|
-
|
|
251
|
-
/**
|
|
252
|
-
* Register a directory to be scanned for components and imported only when used.
|
|
253
|
-
*/
|
|
254
|
-
declare function addComponentsDir(dir: ComponentsDir, opts?: {
|
|
255
|
-
prepend?: boolean;
|
|
256
|
-
}): void;
|
|
257
|
-
type AddComponentOptions = {
|
|
258
|
-
name: string;
|
|
259
|
-
filePath: string;
|
|
260
|
-
} & Partial<Exclude<Component, 'shortPath' | 'async' | 'level' | 'import' | 'asyncImport'>>;
|
|
261
|
-
/**
|
|
262
|
-
* This utility takes a file path or npm package that is scanned for named exports, which are get added automatically
|
|
263
|
-
*/
|
|
264
|
-
declare function addComponentExports(opts: Omit<AddComponentOptions, 'name'> & {
|
|
265
|
-
prefix?: string;
|
|
266
|
-
}): void;
|
|
267
|
-
/**
|
|
268
|
-
* Register a component by its name and filePath.
|
|
269
|
-
*/
|
|
270
|
-
declare function addComponent(opts: AddComponentOptions): void;
|
|
271
|
-
|
|
272
|
-
/**
|
|
273
|
-
* Direct access to the Nuxt global context - see https://github.com/unjs/unctx.
|
|
274
|
-
* @deprecated Use `getNuxtCtx` instead
|
|
275
|
-
*/
|
|
276
|
-
declare const nuxtCtx: UseContext<Nuxt>;
|
|
277
|
-
/** Direct access to the Nuxt context with asyncLocalStorage - see https://github.com/unjs/unctx. */
|
|
278
|
-
declare const getNuxtCtx: () => Nuxt | null;
|
|
279
|
-
/**
|
|
280
|
-
* Get access to Nuxt instance.
|
|
281
|
-
*
|
|
282
|
-
* Throws an error if Nuxt instance is unavailable.
|
|
283
|
-
* @example
|
|
284
|
-
* ```js
|
|
285
|
-
* const nuxt = useNuxt()
|
|
286
|
-
* ```
|
|
287
|
-
*/
|
|
288
|
-
declare function useNuxt(): Nuxt;
|
|
289
|
-
/**
|
|
290
|
-
* Get access to Nuxt instance.
|
|
291
|
-
*
|
|
292
|
-
* Returns null if Nuxt instance is unavailable.
|
|
293
|
-
* @example
|
|
294
|
-
* ```js
|
|
295
|
-
* const nuxt = tryUseNuxt()
|
|
296
|
-
* if (nuxt) {
|
|
297
|
-
* // Do something
|
|
298
|
-
* }
|
|
299
|
-
* ```
|
|
300
|
-
*/
|
|
301
|
-
declare function tryUseNuxt(): Nuxt | null;
|
|
302
|
-
declare function runWithNuxtContext<T extends (...args: any[]) => any>(nuxt: Nuxt, fn: T): ReturnType<T>;
|
|
303
|
-
|
|
304
|
-
declare function createIsIgnored(nuxt?: Nuxt | null | undefined): (pathname: string, stats?: unknown) => boolean;
|
|
305
|
-
/**
|
|
306
|
-
* Return a filter function to filter an array of paths
|
|
307
|
-
*/
|
|
308
|
-
declare function isIgnored(pathname: string, _stats?: unknown, nuxt?: Nuxt | null | undefined): boolean;
|
|
309
|
-
declare function resolveIgnorePatterns(relativePath?: string): string[];
|
|
310
|
-
|
|
311
|
-
declare function addLayout(template: NuxtTemplate | string, name?: string): void;
|
|
312
|
-
|
|
313
|
-
type isNitroV2 = 'options' extends keyof NitroV2.Nitro ? '___INVALID' extends keyof NitroV2.Nitro ? false : true : false;
|
|
314
|
-
type Nitro = isNitroV2 extends true ? NitroV2.Nitro : NitroV3.Nitro;
|
|
315
|
-
type NitroDevEventHandler = isNitroV2 extends true ? NitroV2.NitroDevEventHandler : NitroV3.NitroDevEventHandler;
|
|
316
|
-
type NitroEventHandler = isNitroV2 extends true ? NitroV2.NitroEventHandler : NitroV3.NitroEventHandler;
|
|
317
|
-
type NitroRouteConfig = isNitroV2 extends true ? NitroV2.NitroRouteConfig : NitroV3.NitroRouteConfig;
|
|
318
|
-
|
|
319
|
-
declare function extendPages(cb: NuxtHooks['pages:extend']): void;
|
|
320
|
-
interface ExtendRouteRulesOptions {
|
|
321
|
-
/**
|
|
322
|
-
* Override route rule config
|
|
323
|
-
* @default false
|
|
324
|
-
*/
|
|
325
|
-
override?: boolean;
|
|
326
|
-
}
|
|
327
|
-
declare function extendRouteRules(route: string, rule: NitroRouteConfig, options?: ExtendRouteRulesOptions): void;
|
|
328
|
-
interface AddRouteMiddlewareOptions {
|
|
329
|
-
/**
|
|
330
|
-
* Override existing middleware with the same name, if it exists
|
|
331
|
-
* @default false
|
|
332
|
-
*/
|
|
333
|
-
override?: boolean;
|
|
334
|
-
/**
|
|
335
|
-
* Prepend middleware to the list
|
|
336
|
-
* @default false
|
|
337
|
-
*/
|
|
338
|
-
prepend?: boolean;
|
|
339
|
-
}
|
|
340
|
-
declare function addRouteMiddleware(input: NuxtMiddleware | NuxtMiddleware[], options?: AddRouteMiddlewareOptions): void;
|
|
341
|
-
|
|
342
|
-
declare function normalizePlugin(plugin: NuxtPlugin | string): NuxtPlugin;
|
|
343
|
-
/**
|
|
344
|
-
* Registers a nuxt plugin and to the plugins array.
|
|
345
|
-
*
|
|
346
|
-
* Note: You can use mode or .client and .server modifiers with fileName option
|
|
347
|
-
* to use plugin only in client or server side.
|
|
348
|
-
*
|
|
349
|
-
* Note: By default plugin is prepended to the plugins array. You can use second argument to append (push) instead.
|
|
350
|
-
* @example
|
|
351
|
-
* ```js
|
|
352
|
-
* import { createResolver } from '@nuxt/kit'
|
|
353
|
-
* const resolver = createResolver(import.meta.url)
|
|
354
|
-
*
|
|
355
|
-
* addPlugin({
|
|
356
|
-
* src: resolver.resolve('templates/foo.js'),
|
|
357
|
-
* filename: 'foo.server.js' // [optional] only include in server bundle
|
|
358
|
-
* })
|
|
359
|
-
* ```
|
|
360
|
-
*/
|
|
361
|
-
interface AddPluginOptions {
|
|
362
|
-
append?: boolean;
|
|
363
|
-
}
|
|
364
|
-
declare function addPlugin(_plugin: NuxtPlugin | string, opts?: AddPluginOptions): NuxtPlugin;
|
|
365
|
-
/**
|
|
366
|
-
* Adds a template and registers as a nuxt plugin.
|
|
367
|
-
*/
|
|
368
|
-
declare function addPluginTemplate(plugin: NuxtPluginTemplate | string, opts?: AddPluginOptions): NuxtPlugin;
|
|
369
|
-
|
|
370
|
-
interface ResolvePathOptions {
|
|
371
|
-
/** Base for resolving paths from. Default is Nuxt rootDir. */
|
|
372
|
-
cwd?: string;
|
|
373
|
-
/** An object of aliases. Default is Nuxt configured aliases. */
|
|
374
|
-
alias?: Record<string, string>;
|
|
375
|
-
/**
|
|
376
|
-
* The file extensions to try.
|
|
377
|
-
* Default is Nuxt configured extensions.
|
|
378
|
-
*
|
|
379
|
-
* Isn't considered when `type` is set to `'dir'`.
|
|
380
|
-
*/
|
|
381
|
-
extensions?: string[];
|
|
382
|
-
/**
|
|
383
|
-
* Whether to resolve files that exist in the Nuxt VFS (for example, as a Nuxt template).
|
|
384
|
-
* @default false
|
|
385
|
-
*/
|
|
386
|
-
virtual?: boolean;
|
|
387
|
-
/**
|
|
388
|
-
* Whether to fallback to the original path if the resolved path does not exist instead of returning the normalized input path.
|
|
389
|
-
* @default false
|
|
390
|
-
*/
|
|
391
|
-
fallbackToOriginal?: boolean;
|
|
392
|
-
/**
|
|
393
|
-
* The type of the path to be resolved.
|
|
394
|
-
* @default 'file'
|
|
395
|
-
*/
|
|
396
|
-
type?: PathType;
|
|
397
|
-
}
|
|
398
|
-
/**
|
|
399
|
-
* Resolve the full path to a file or a directory (based on the provided type), respecting Nuxt alias and extensions options.
|
|
400
|
-
*
|
|
401
|
-
* If a path cannot be resolved, normalized input will be returned unless the `fallbackToOriginal` option is set to `true`,
|
|
402
|
-
* in which case the original input path will be returned.
|
|
403
|
-
*/
|
|
404
|
-
declare function resolvePath(path: string, opts?: ResolvePathOptions): Promise<string>;
|
|
405
|
-
/**
|
|
406
|
-
* Try to resolve first existing file in paths
|
|
407
|
-
*/
|
|
408
|
-
declare function findPath(paths: string | string[], opts?: ResolvePathOptions, pathType?: PathType): Promise<string | null>;
|
|
409
|
-
/**
|
|
410
|
-
* Resolve path aliases respecting Nuxt alias options
|
|
411
|
-
*/
|
|
412
|
-
declare function resolveAlias(path: string, alias?: Record<string, string>): string;
|
|
413
|
-
interface Resolver {
|
|
414
|
-
resolve(...path: string[]): string;
|
|
415
|
-
resolvePath(path: string, opts?: ResolvePathOptions): Promise<string>;
|
|
416
|
-
}
|
|
417
|
-
/**
|
|
418
|
-
* Create a relative resolver
|
|
419
|
-
*/
|
|
420
|
-
declare function createResolver(base: string | URL): Resolver;
|
|
421
|
-
declare function resolveNuxtModule(base: string, paths: string[]): Promise<string[]>;
|
|
422
|
-
type PathType = 'file' | 'dir';
|
|
423
|
-
/**
|
|
424
|
-
* Resolve absolute file paths in the provided directory with respect to `.nuxtignore` and return them sorted.
|
|
425
|
-
* @param path path to the directory to resolve files in
|
|
426
|
-
* @param pattern glob pattern or an array of glob patterns to match files
|
|
427
|
-
* @param opts options for globbing
|
|
428
|
-
* @param opts.followSymbolicLinks whether to follow symbolic links, default is `true`
|
|
429
|
-
* @param opts.ignore additional glob patterns to ignore
|
|
430
|
-
* @returns sorted array of absolute file paths
|
|
431
|
-
*/
|
|
432
|
-
declare function resolveFiles(path: string, pattern: string | string[], opts?: {
|
|
433
|
-
followSymbolicLinks?: boolean;
|
|
434
|
-
ignore?: GlobOptions['ignore'];
|
|
435
|
-
}): Promise<string[]>;
|
|
436
|
-
|
|
437
|
-
/**
|
|
438
|
-
* Adds a nitro server handler
|
|
439
|
-
*
|
|
440
|
-
*/
|
|
441
|
-
declare function addServerHandler(handler: NitroEventHandler): void;
|
|
442
|
-
/**
|
|
443
|
-
* Adds a nitro server handler for development-only
|
|
444
|
-
*
|
|
445
|
-
*/
|
|
446
|
-
declare function addDevServerHandler(handler: NitroDevEventHandler): void;
|
|
447
|
-
/**
|
|
448
|
-
* Adds a Nitro plugin
|
|
449
|
-
*/
|
|
450
|
-
declare function addServerPlugin(plugin: string): void;
|
|
451
|
-
/**
|
|
452
|
-
* Adds routes to be prerendered
|
|
453
|
-
*/
|
|
454
|
-
declare function addPrerenderRoutes(routes: string | string[]): void;
|
|
455
|
-
/**
|
|
456
|
-
* Access to the Nitro instance
|
|
457
|
-
*
|
|
458
|
-
* **Note:** You can call `useNitro()` only after `ready` hook.
|
|
459
|
-
*
|
|
460
|
-
* **Note:** Changes to the Nitro instance configuration are not applied.
|
|
461
|
-
* @example
|
|
462
|
-
*
|
|
463
|
-
* ```ts
|
|
464
|
-
* nuxt.hook('ready', () => {
|
|
465
|
-
* console.log(useNitro())
|
|
466
|
-
* })
|
|
467
|
-
* ```
|
|
468
|
-
*/
|
|
469
|
-
declare function useNitro(): Nitro;
|
|
470
|
-
/**
|
|
471
|
-
* Add server imports to be auto-imported by Nitro
|
|
472
|
-
*/
|
|
473
|
-
declare function addServerImports(imports: Import | Import[]): void;
|
|
474
|
-
/**
|
|
475
|
-
* Add directories to be scanned for auto-imports by Nitro
|
|
476
|
-
*/
|
|
477
|
-
declare function addServerImportsDir(dirs: string | string[], opts?: {
|
|
478
|
-
prepend?: boolean;
|
|
479
|
-
}): void;
|
|
480
|
-
/**
|
|
481
|
-
* Add directories to be scanned by Nitro. It will check for subdirectories,
|
|
482
|
-
* which will be registered just like the `~/server` folder is.
|
|
483
|
-
*/
|
|
484
|
-
declare function addServerScanDir(dirs: string | string[], opts?: {
|
|
485
|
-
prepend?: boolean;
|
|
486
|
-
}): void;
|
|
487
|
-
|
|
488
|
-
/**
|
|
489
|
-
* Renders given template during build into the virtual file system (and optionally to disk in the project `buildDir`)
|
|
490
|
-
*/
|
|
491
|
-
declare function addTemplate<T>(_template: NuxtTemplate<T> | string): ResolvedNuxtTemplate<T>;
|
|
492
|
-
/**
|
|
493
|
-
* Adds a virtual file that can be used within the Nuxt Nitro server build.
|
|
494
|
-
*/
|
|
495
|
-
declare function addServerTemplate(template: NuxtServerTemplate): NuxtServerTemplate;
|
|
496
|
-
/**
|
|
497
|
-
* Renders given types during build to disk in the project `buildDir`
|
|
498
|
-
* and register them as types.
|
|
499
|
-
*
|
|
500
|
-
* You can pass a second context object to specify in which context the type should be added.
|
|
501
|
-
*
|
|
502
|
-
* If no context object is passed, then it will only be added to the nuxt context.
|
|
503
|
-
*/
|
|
504
|
-
declare function addTypeTemplate<T>(_template: NuxtTypeTemplate<T>, context?: {
|
|
505
|
-
nitro?: boolean;
|
|
506
|
-
nuxt?: boolean;
|
|
507
|
-
node?: boolean;
|
|
508
|
-
shared?: boolean;
|
|
509
|
-
}): ResolvedNuxtTemplate<T>;
|
|
510
|
-
/**
|
|
511
|
-
* Normalize a nuxt template object
|
|
512
|
-
*/
|
|
513
|
-
declare function normalizeTemplate<T>(template: NuxtTemplate<T> | string, buildDir?: string): ResolvedNuxtTemplate<T>;
|
|
514
|
-
/**
|
|
515
|
-
* Trigger rebuilding Nuxt templates
|
|
516
|
-
*
|
|
517
|
-
* You can pass a filter within the options to selectively regenerate a subset of templates.
|
|
518
|
-
*/
|
|
519
|
-
declare function updateTemplates(options?: {
|
|
520
|
-
filter?: (template: ResolvedNuxtTemplate<any>) => boolean;
|
|
521
|
-
}): Promise<void>;
|
|
522
|
-
declare function writeTypes(nuxt: Nuxt): Promise<void>;
|
|
523
|
-
|
|
524
|
-
declare const logger: ConsolaInstance;
|
|
525
|
-
declare function useLogger(tag?: string, options?: Partial<ConsolaOptions>): ConsolaInstance;
|
|
526
|
-
|
|
527
|
-
interface ResolveModuleOptions {
|
|
528
|
-
/** @deprecated use `url` with URLs pointing at a file - never a directory */
|
|
529
|
-
paths?: string | string[];
|
|
530
|
-
url?: URL | URL[];
|
|
531
|
-
/** @default ['.js', '.mjs', '.cjs', '.ts', '.mts', '.cts'] */
|
|
532
|
-
extensions?: string[];
|
|
533
|
-
}
|
|
534
|
-
declare function directoryToURL(dir: string): URL;
|
|
535
|
-
/**
|
|
536
|
-
* Resolve a module from a given root path using an algorithm patterned on
|
|
537
|
-
* the upcoming `import.meta.resolve`. It returns a file URL
|
|
538
|
-
*
|
|
539
|
-
* @internal
|
|
540
|
-
*/
|
|
541
|
-
declare function tryResolveModule(id: string, url: URL | URL[]): Promise<string | undefined>;
|
|
542
|
-
/** @deprecated pass URLs pointing at files */
|
|
543
|
-
declare function tryResolveModule(id: string, url: string | string[]): Promise<string | undefined>;
|
|
544
|
-
declare function resolveModule(id: string, options?: ResolveModuleOptions): string;
|
|
545
|
-
interface ImportModuleOptions extends ResolveModuleOptions {
|
|
546
|
-
/** Automatically de-default the result of requiring the module. */
|
|
547
|
-
interopDefault?: boolean;
|
|
548
|
-
}
|
|
549
|
-
declare function importModule<T = unknown>(id: string, opts?: ImportModuleOptions): Promise<T>;
|
|
550
|
-
declare function tryImportModule<T = unknown>(id: string, opts?: ImportModuleOptions): Promise<T | undefined> | undefined;
|
|
551
|
-
/**
|
|
552
|
-
* @deprecated Please use `importModule` instead.
|
|
553
|
-
*/
|
|
554
|
-
declare function requireModule<T = unknown>(id: string, opts?: ImportModuleOptions): T;
|
|
555
|
-
/**
|
|
556
|
-
* @deprecated Please use `tryImportModule` instead.
|
|
557
|
-
*/
|
|
558
|
-
declare function tryRequireModule<T = unknown>(id: string, opts?: ImportModuleOptions): T | undefined;
|
|
559
|
-
|
|
560
|
-
export { addBuildPlugin, addComponent, addComponentExports, addComponentsDir, addDevServerHandler, addImports, addImportsDir, addImportsSources, addLayout, addPlugin, addPluginTemplate, addPrerenderRoutes, addRouteMiddleware, addRspackPlugin, addServerHandler, addServerImports, addServerImportsDir, addServerPlugin, addServerScanDir, addServerTemplate, addTemplate, addTypeTemplate, addVitePlugin, addWebpackPlugin, assertNuxtCompatibility, buildNuxt, checkNuxtCompatibility, createIsIgnored, createResolver, defineNuxtModule, directoryToURL, extendNuxtSchema, extendPages, extendRouteRules, extendRspackConfig, extendViteConfig, extendWebpackConfig, findPath, getDirectory, getLayerDirectories, getNuxtCtx, getNuxtModuleVersion, getNuxtVersion, hasNuxtCompatibility, hasNuxtModule, hasNuxtModuleCompatibility, importModule, installModule, installModules, isIgnored, isNuxt2, isNuxt3, isNuxtMajorVersion, loadNuxt, loadNuxtConfig, loadNuxtModuleInstance, logger, normalizeModuleTranspilePath, normalizePlugin, normalizeSemanticVersion, normalizeTemplate, nuxtCtx, requireModule, resolveAlias, resolveFiles, resolveIgnorePatterns, resolveModule, resolveModuleWithOptions, resolveNuxtModule, resolvePath, runWithNuxtContext, setGlobalHead, tryImportModule, tryRequireModule, tryResolveModule, tryUseNuxt, updateRuntimeConfig, updateTemplates, useLogger, useNitro, useNuxt, useRuntimeConfig, writeTypes };
|
|
561
|
-
export type { AddComponentOptions, AddPluginOptions, AddRouteMiddlewareOptions, ExtendConfigOptions, ExtendRouteRulesOptions, ExtendViteConfigOptions, ExtendWebpackConfigOptions, ImportModuleOptions, LayerDirectories, LoadNuxtConfigOptions, LoadNuxtOptions, NuxtMajorVersion, ResolveModuleOptions, ResolvePathOptions, Resolver };
|