File size: 9,396 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
import { E as EncodedSourceMap } from './trace-mapping.d-xyIfZtPm.js';
type HMRPayload =
| ConnectedPayload
| UpdatePayload
| FullReloadPayload
| CustomPayload
| ErrorPayload
| PrunePayload
interface ConnectedPayload {
type: 'connected'
}
interface UpdatePayload {
type: 'update'
updates: Update[]
}
interface Update {
type: 'js-update' | 'css-update'
path: string
acceptedPath: string
timestamp: number
/** @internal */
explicitImportRequired?: boolean
/** @internal */
isWithinCircularImport?: boolean
/** @internal */
ssrInvalidates?: string[]
}
interface PrunePayload {
type: 'prune'
paths: string[]
}
interface FullReloadPayload {
type: 'full-reload'
path?: string
/** @internal */
triggeredBy?: string
}
interface CustomPayload {
type: 'custom'
event: string
data?: any
}
interface ErrorPayload {
type: 'error'
err: {
[name: string]: any
message: string
stack: string
id?: string
frame?: string
plugin?: string
pluginCode?: string
loc?: {
file?: string
line: number
column: number
}
}
}
interface CustomEventMap {
'vite:beforeUpdate': UpdatePayload
'vite:afterUpdate': UpdatePayload
'vite:beforePrune': PrunePayload
'vite:beforeFullReload': FullReloadPayload
'vite:error': ErrorPayload
'vite:invalidate': InvalidatePayload
'vite:ws:connect': WebSocketConnectionPayload
'vite:ws:disconnect': WebSocketConnectionPayload
}
interface WebSocketConnectionPayload {
/**
* @experimental
* We expose this instance experimentally to see potential usage.
* This might be removed in the future if we didn't find reasonable use cases.
* If you find this useful, please open an issue with details so we can discuss and make it stable API.
*/
webSocket: WebSocket
}
interface InvalidatePayload {
path: string
message: string | undefined
}
/**
* provides types for built-in Vite events
*/
type InferCustomEventPayload<T extends string> =
T extends keyof CustomEventMap ? CustomEventMap[T] : any
type ModuleNamespace = Record<string, any> & {
[Symbol.toStringTag]: 'Module'
}
interface ViteHotContext {
readonly data: any
accept(): void
accept(cb: (mod: ModuleNamespace | undefined) => void): void
accept(dep: string, cb: (mod: ModuleNamespace | undefined) => void): void
accept(
deps: readonly string[],
cb: (mods: Array<ModuleNamespace | undefined>) => void,
): void
acceptExports(
exportNames: string | readonly string[],
cb?: (mod: ModuleNamespace | undefined) => void,
): void
dispose(cb: (data: any) => void): void
prune(cb: (data: any) => void): void
invalidate(message?: string): void
on<T extends string>(
event: T,
cb: (payload: InferCustomEventPayload<T>) => void,
): void
off<T extends string>(
event: T,
cb: (payload: InferCustomEventPayload<T>) => void,
): void
send<T extends string>(event: T, data?: InferCustomEventPayload<T>): void
}
declare const DEFAULT_REQUEST_STUBS: Record<string, Record<string, unknown>>;
declare class ModuleCacheMap extends Map<string, ModuleCache> {
normalizePath(fsPath: string): string;
/**
* Assign partial data to the map
*/
update(fsPath: string, mod: ModuleCache): this;
setByModuleId(modulePath: string, mod: ModuleCache): this;
set(fsPath: string, mod: ModuleCache): this;
getByModuleId(modulePath: string): ModuleCache & Required<Pick<ModuleCache, "imports" | "importers">>;
get(fsPath: string): ModuleCache & Required<Pick<ModuleCache, "imports" | "importers">>;
deleteByModuleId(modulePath: string): boolean;
delete(fsPath: string): boolean;
invalidateModule(mod: ModuleCache): boolean;
/**
* Invalidate modules that dependent on the given modules, up to the main entry
*/
invalidateDepTree(ids: string[] | Set<string>, invalidated?: Set<string>): Set<string>;
/**
* Invalidate dependency modules of the given modules, down to the bottom-level dependencies
*/
invalidateSubDepTree(ids: string[] | Set<string>, invalidated?: Set<string>): Set<string>;
/**
* Return parsed source map based on inlined source map of the module
*/
getSourceMap(id: string): EncodedSourceMap | null;
}
declare class ViteNodeRunner {
options: ViteNodeRunnerOptions;
root: string;
debug: boolean;
/**
* Holds the cache of modules
* Keys of the map are filepaths, or plain package names
*/
moduleCache: ModuleCacheMap;
constructor(options: ViteNodeRunnerOptions);
executeFile(file: string): Promise<any>;
executeId(rawId: string): Promise<any>;
/** @internal */
cachedRequest(id: string, fsPath: string, callstack: string[]): Promise<any>;
shouldResolveId(id: string, _importee?: string): boolean;
private _resolveUrl;
resolveUrl(id: string, importee?: string): Promise<[url: string, fsPath: string]>;
/** @internal */
dependencyRequest(id: string, fsPath: string, callstack: string[]): Promise<any>;
/** @internal */
directRequest(id: string, fsPath: string, _callstack: string[]): Promise<any>;
protected getContextPrimitives(): {
Object: ObjectConstructor;
Reflect: typeof Reflect;
Symbol: SymbolConstructor;
};
protected runModule(context: Record<string, any>, transformed: string): Promise<void>;
prepareContext(context: Record<string, any>): Record<string, any>;
/**
* Define if a module should be interop-ed
* This function mostly for the ability to override by subclass
*/
shouldInterop(path: string, mod: any): boolean;
protected importExternalModule(path: string): Promise<any>;
/**
* Import a module and interop it
*/
interopedImport(path: string): Promise<any>;
}
type Nullable<T> = T | null | undefined;
type Arrayable<T> = T | Array<T>;
type Awaitable<T> = T | PromiseLike<T>;
interface DepsHandlingOptions {
external?: (string | RegExp)[];
inline?: (string | RegExp)[] | true;
/**
* A list of directories that are considered to hold Node.js modules
* Have to include "/" at the start and end of the path
*
* Vite-Node checks the whole absolute path of the import, so make sure you don't include
* unwanted files accidentally
* @default ['/node_modules/']
*/
moduleDirectories?: string[];
cacheDir?: string;
/**
* Try to guess the CJS version of a package when it's invalid ESM
* @default false
*/
fallbackCJS?: boolean;
}
interface StartOfSourceMap {
file?: string;
sourceRoot?: string;
}
interface RawSourceMap extends StartOfSourceMap {
version: number;
sources: string[];
names: string[];
sourcesContent?: (string | null)[];
mappings: string;
}
interface FetchResult {
code?: string;
externalize?: string;
map?: EncodedSourceMap | null;
}
type HotContext = Omit<ViteHotContext, 'acceptDeps' | 'decline'>;
type FetchFunction = (id: string) => Promise<FetchResult>;
type ResolveIdFunction = (id: string, importer?: string) => Awaitable<ViteNodeResolveId | null | undefined | void>;
type CreateHotContextFunction = (runner: ViteNodeRunner, url: string) => HotContext;
interface ModuleCache {
promise?: Promise<any>;
exports?: any;
evaluated?: boolean;
resolving?: boolean;
code?: string;
map?: EncodedSourceMap;
/**
* Module ids that imports this module
*/
importers?: Set<string>;
imports?: Set<string>;
}
interface ViteNodeRunnerOptions {
root: string;
fetchModule: FetchFunction;
resolveId?: ResolveIdFunction;
createHotContext?: CreateHotContextFunction;
base?: string;
moduleCache?: ModuleCacheMap;
interopDefault?: boolean;
requestStubs?: Record<string, any>;
debug?: boolean;
}
interface ViteNodeResolveId {
external?: boolean | 'absolute' | 'relative';
id: string;
meta?: Record<string, any> | null;
moduleSideEffects?: boolean | 'no-treeshake' | null;
syntheticNamedExports?: boolean | string | null;
}
interface ViteNodeServerOptions {
/**
* Inject inline sourcemap to modules
* @default 'inline'
*/
sourcemap?: 'inline' | boolean;
/**
* Deps handling
*/
deps?: DepsHandlingOptions;
/**
* Transform method for modules
*/
transformMode?: {
ssr?: RegExp[];
web?: RegExp[];
};
debug?: DebuggerOptions;
}
interface DebuggerOptions {
/**
* Dump the transformed module to filesystem
* Passing a string will dump to the specified path
*/
dumpModules?: boolean | string;
/**
* Read dumpped module from filesystem whenever exists.
* Useful for debugging by modifying the dump result from the filesystem.
*/
loadDumppedModules?: boolean;
}
export { type Arrayable as A, type CustomEventMap as C, type DebuggerOptions as D, type FetchResult as F, type HMRPayload as H, ModuleCacheMap as M, type Nullable as N, type RawSourceMap as R, type StartOfSourceMap as S, type ViteNodeServerOptions as V, ViteNodeRunner as a, type HotContext as b, type DepsHandlingOptions as c, type ViteNodeResolveId as d, DEFAULT_REQUEST_STUBS as e, type Awaitable as f, type FetchFunction as g, type ResolveIdFunction as h, type CreateHotContextFunction as i, type ModuleCache as j, type ViteNodeRunnerOptions as k };
|