vite-node 0.18.1 → 0.19.0
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/cli.d.ts +8 -0
- package/client.d.ts +37 -0
- package/dist/cli.cjs +1 -1
- package/dist/cli.d.ts +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/client.cjs +12 -1
- package/dist/client.d.ts +1 -1
- package/dist/client.mjs +12 -1
- package/dist/hmr.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/server.cjs +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.mjs +1 -1
- package/dist/{types-041865e7.d.ts → types-de894284.d.ts} +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utils.d.ts +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/server.d.ts +26 -0
- package/types.d.ts +68 -0
- package/utils.d.ts +10 -0
package/cli.d.ts
ADDED
package/client.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ViteNodeRunnerOptions, ModuleCache } from './types.js';
|
|
2
|
+
|
|
3
|
+
declare const DEFAULT_REQUEST_STUBS: {
|
|
4
|
+
'/@vite/client': {
|
|
5
|
+
injectQuery: (id: string) => string;
|
|
6
|
+
createHotContext(): {
|
|
7
|
+
accept: () => void;
|
|
8
|
+
prune: () => void;
|
|
9
|
+
};
|
|
10
|
+
updateStyle(): void;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
declare class ViteNodeRunner {
|
|
14
|
+
options: ViteNodeRunnerOptions;
|
|
15
|
+
root: string;
|
|
16
|
+
moduleCache: Map<string, ModuleCache>;
|
|
17
|
+
constructor(options: ViteNodeRunnerOptions);
|
|
18
|
+
executeFile(file: string): Promise<any>;
|
|
19
|
+
executeId(id: string): Promise<any>;
|
|
20
|
+
cachedRequest(rawId: string, callstack: string[]): Promise<any>;
|
|
21
|
+
directRequest(id: string, fsPath: string, callstack: string[]): Promise<any>;
|
|
22
|
+
prepareContext(context: Record<string, any>): Record<string, any>;
|
|
23
|
+
setCache(id: string, mod: Partial<ModuleCache>): void;
|
|
24
|
+
shouldResolveId(dep: string): boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Define if a module should be interop-ed
|
|
27
|
+
* This function mostly for the ability to override by subclass
|
|
28
|
+
*/
|
|
29
|
+
shouldInterop(path: string, mod: any): boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Import a module and interop it
|
|
32
|
+
*/
|
|
33
|
+
interopedImport(path: string): Promise<any>;
|
|
34
|
+
hasNestedDefault(target: any): any;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { DEFAULT_REQUEST_STUBS, ViteNodeRunner };
|
package/dist/cli.cjs
CHANGED
|
@@ -628,7 +628,7 @@ class CAC extends events.EventEmitter {
|
|
|
628
628
|
|
|
629
629
|
const cac = (name = "") => new CAC(name);
|
|
630
630
|
|
|
631
|
-
var version = "0.
|
|
631
|
+
var version = "0.19.0";
|
|
632
632
|
|
|
633
633
|
const cli = cac("vite-node");
|
|
634
634
|
cli.version(version).option("-r, --root <path>", "Use specified root directory").option("-c, --config <path>", "Use specified config file").option("-w, --watch", 'Restart on file changes, similar to "nodemon"').option("--options <options>", "Use specified Vite server options").help();
|
package/dist/cli.d.ts
CHANGED
package/dist/cli.mjs
CHANGED
|
@@ -626,7 +626,7 @@ class CAC extends EventEmitter {
|
|
|
626
626
|
|
|
627
627
|
const cac = (name = "") => new CAC(name);
|
|
628
628
|
|
|
629
|
-
var version = "0.
|
|
629
|
+
var version = "0.19.0";
|
|
630
630
|
|
|
631
631
|
const cli = cac("vite-node");
|
|
632
632
|
cli.version(version).option("-r, --root <path>", "Use specified root directory").option("-c, --config <path>", "Use specified config file").option("-w, --watch", 'Restart on file changes, similar to "nodemon"').option("--options <options>", "Use specified Vite server options").help();
|
package/dist/client.cjs
CHANGED
|
@@ -54,7 +54,18 @@ const DEFAULT_REQUEST_STUBS = {
|
|
|
54
54
|
}
|
|
55
55
|
};
|
|
56
56
|
},
|
|
57
|
-
updateStyle() {
|
|
57
|
+
updateStyle(id, css) {
|
|
58
|
+
if (typeof document === "undefined")
|
|
59
|
+
return;
|
|
60
|
+
const element = document.getElementById(id);
|
|
61
|
+
if (element)
|
|
62
|
+
element.remove();
|
|
63
|
+
const head = document.querySelector("head");
|
|
64
|
+
const style = document.createElement("style");
|
|
65
|
+
style.setAttribute("type", "text/css");
|
|
66
|
+
style.id = id;
|
|
67
|
+
style.innerHTML = css;
|
|
68
|
+
head == null ? void 0 : head.appendChild(style);
|
|
58
69
|
}
|
|
59
70
|
}
|
|
60
71
|
};
|
package/dist/client.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { i as DEFAULT_REQUEST_STUBS, M as ModuleCacheMap, g as ViteNodeRunner } from './types-
|
|
1
|
+
export { i as DEFAULT_REQUEST_STUBS, M as ModuleCacheMap, g as ViteNodeRunner } from './types-de894284.js';
|
package/dist/client.mjs
CHANGED
|
@@ -27,7 +27,18 @@ const DEFAULT_REQUEST_STUBS = {
|
|
|
27
27
|
}
|
|
28
28
|
};
|
|
29
29
|
},
|
|
30
|
-
updateStyle() {
|
|
30
|
+
updateStyle(id, css) {
|
|
31
|
+
if (typeof document === "undefined")
|
|
32
|
+
return;
|
|
33
|
+
const element = document.getElementById(id);
|
|
34
|
+
if (element)
|
|
35
|
+
element.remove();
|
|
36
|
+
const head = document.querySelector("head");
|
|
37
|
+
const style = document.createElement("style");
|
|
38
|
+
style.setAttribute("type", "text/css");
|
|
39
|
+
style.id = id;
|
|
40
|
+
style.innerHTML = css;
|
|
41
|
+
head == null ? void 0 : head.appendChild(style);
|
|
31
42
|
}
|
|
32
43
|
}
|
|
33
44
|
};
|
package/dist/hmr.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from 'events';
|
|
2
2
|
import { HMRPayload, Plugin } from 'vite';
|
|
3
|
-
import { U as UpdatePayload, P as PrunePayload, f as FullReloadPayload, E as ErrorPayload, g as ViteNodeRunner, h as HMRPayload$1, H as HotContext } from './types-
|
|
3
|
+
import { U as UpdatePayload, P as PrunePayload, f as FullReloadPayload, E as ErrorPayload, g as ViteNodeRunner, h as HMRPayload$1, H as HotContext } from './types-de894284.js';
|
|
4
4
|
|
|
5
5
|
declare type EventType = string | symbol;
|
|
6
6
|
declare type Handler<T = unknown> = (event: T) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { A as Arrayable, C as CreateHotContextFunction, D as DepsHandlingOptions, a as FetchFunction, F as FetchResult, H as HotContext, c as ModuleCache, M as ModuleCacheMap, N as Nullable, R as RawSourceMap, b as ResolveIdFunction, S as StartOfSourceMap, d as ViteNodeResolveId, V as ViteNodeRunnerOptions, e as ViteNodeServerOptions } from './types-
|
|
1
|
+
export { A as Arrayable, C as CreateHotContextFunction, D as DepsHandlingOptions, a as FetchFunction, F as FetchResult, H as HotContext, c as ModuleCache, M as ModuleCacheMap, N as Nullable, R as RawSourceMap, b as ResolveIdFunction, S as StartOfSourceMap, d as ViteNodeResolveId, V as ViteNodeRunnerOptions, e as ViteNodeServerOptions } from './types-de894284.js';
|
package/dist/server.cjs
CHANGED
package/dist/server.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ViteDevServer, TransformResult } from 'vite';
|
|
2
|
-
import { D as DepsHandlingOptions, e as ViteNodeServerOptions, F as FetchResult, d as ViteNodeResolveId } from './types-
|
|
2
|
+
import { D as DepsHandlingOptions, e as ViteNodeServerOptions, F as FetchResult, d as ViteNodeResolveId } from './types-de894284.js';
|
|
3
3
|
|
|
4
4
|
declare function guessCJSversion(id: string): string | undefined;
|
|
5
5
|
declare function shouldExternalize(id: string, options?: DepsHandlingOptions, cache?: Map<string, Promise<string | false>>): Promise<string | false>;
|
package/dist/server.mjs
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { A as Arrayable, C as CreateHotContextFunction, D as DepsHandlingOptions, a as FetchFunction, F as FetchResult, H as HotContext, c as ModuleCache, M as ModuleCacheMap, N as Nullable, R as RawSourceMap, b as ResolveIdFunction, S as StartOfSourceMap, d as ViteNodeResolveId, V as ViteNodeRunnerOptions, e as ViteNodeServerOptions } from './types-
|
|
1
|
+
export { A as Arrayable, C as CreateHotContextFunction, D as DepsHandlingOptions, a as FetchFunction, F as FetchResult, H as HotContext, c as ModuleCache, M as ModuleCacheMap, N as Nullable, R as RawSourceMap, b as ResolveIdFunction, S as StartOfSourceMap, d as ViteNodeResolveId, V as ViteNodeRunnerOptions, e as ViteNodeServerOptions } from './types-de894284.js';
|
package/dist/utils.d.ts
CHANGED
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DepsHandlingOptions, FetchFunction, FetchResult, ModuleCache, RawSourceMap, ResolveIdFunction, StartOfSourceMap, ViteNodeResolveId, ViteNodeRunnerOptions, ViteNodeServerOptions } from './types.js';
|
package/package.json
CHANGED
package/server.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ViteDevServer, TransformResult } from 'vite';
|
|
2
|
+
import { DepsHandlingOptions, ViteNodeServerOptions, FetchResult, ViteNodeResolveId } from './types.js';
|
|
3
|
+
|
|
4
|
+
declare function guessCJSversion(id: string): string | undefined;
|
|
5
|
+
declare function shouldExternalize(id: string, options?: DepsHandlingOptions, cache?: Map<string, Promise<string | false>>): Promise<string | false>;
|
|
6
|
+
|
|
7
|
+
declare class ViteNodeServer {
|
|
8
|
+
server: ViteDevServer;
|
|
9
|
+
options: ViteNodeServerOptions;
|
|
10
|
+
private fetchPromiseMap;
|
|
11
|
+
private transformPromiseMap;
|
|
12
|
+
fetchCache: Map<string, {
|
|
13
|
+
timestamp: number;
|
|
14
|
+
result: FetchResult;
|
|
15
|
+
}>;
|
|
16
|
+
constructor(server: ViteDevServer, options?: ViteNodeServerOptions);
|
|
17
|
+
shouldExternalize(id: string): Promise<string | false>;
|
|
18
|
+
resolveId(id: string, importer?: string): Promise<ViteNodeResolveId | null>;
|
|
19
|
+
fetchModule(id: string): Promise<FetchResult>;
|
|
20
|
+
transformRequest(id: string): Promise<TransformResult | null | undefined>;
|
|
21
|
+
getTransformMode(id: string): "web" | "ssr";
|
|
22
|
+
private _fetchModule;
|
|
23
|
+
private _transformRequest;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export { ViteNodeServer, guessCJSversion, shouldExternalize };
|
package/types.d.ts
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
interface DepsHandlingOptions {
|
|
2
|
+
external?: (string | RegExp)[];
|
|
3
|
+
inline?: (string | RegExp)[];
|
|
4
|
+
/**
|
|
5
|
+
* Try to guess the CJS version of a package when it's invalid ESM
|
|
6
|
+
* @default true
|
|
7
|
+
*/
|
|
8
|
+
fallbackCJS?: boolean;
|
|
9
|
+
}
|
|
10
|
+
interface StartOfSourceMap {
|
|
11
|
+
file?: string;
|
|
12
|
+
sourceRoot?: string;
|
|
13
|
+
}
|
|
14
|
+
interface RawSourceMap extends StartOfSourceMap {
|
|
15
|
+
version: string;
|
|
16
|
+
sources: string[];
|
|
17
|
+
names: string[];
|
|
18
|
+
sourcesContent?: string[];
|
|
19
|
+
mappings: string;
|
|
20
|
+
}
|
|
21
|
+
interface FetchResult {
|
|
22
|
+
code?: string;
|
|
23
|
+
externalize?: string;
|
|
24
|
+
map?: RawSourceMap;
|
|
25
|
+
}
|
|
26
|
+
declare type FetchFunction = (id: string) => Promise<FetchResult>;
|
|
27
|
+
declare type ResolveIdFunction = (id: string, importer?: string) => Promise<ViteNodeResolveId | null>;
|
|
28
|
+
interface ModuleCache {
|
|
29
|
+
promise?: Promise<any>;
|
|
30
|
+
exports?: any;
|
|
31
|
+
code?: string;
|
|
32
|
+
}
|
|
33
|
+
interface ViteNodeRunnerOptions {
|
|
34
|
+
fetchModule: FetchFunction;
|
|
35
|
+
resolveId: ResolveIdFunction;
|
|
36
|
+
root: string;
|
|
37
|
+
base?: string;
|
|
38
|
+
moduleCache?: Map<string, ModuleCache>;
|
|
39
|
+
interopDefault?: boolean;
|
|
40
|
+
requestStubs?: Record<string, any>;
|
|
41
|
+
}
|
|
42
|
+
interface ViteNodeResolveId {
|
|
43
|
+
external?: boolean | 'absolute' | 'relative';
|
|
44
|
+
id: string;
|
|
45
|
+
meta?: Record<string, any> | null;
|
|
46
|
+
moduleSideEffects?: boolean | 'no-treeshake' | null;
|
|
47
|
+
syntheticNamedExports?: boolean | string | null;
|
|
48
|
+
}
|
|
49
|
+
interface ViteNodeServerOptions {
|
|
50
|
+
/**
|
|
51
|
+
* Inject inline sourcemap to modules
|
|
52
|
+
* @default 'inline'
|
|
53
|
+
*/
|
|
54
|
+
sourcemap?: 'inline' | boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Deps handling
|
|
57
|
+
*/
|
|
58
|
+
deps?: DepsHandlingOptions;
|
|
59
|
+
/**
|
|
60
|
+
* Transform method for modules
|
|
61
|
+
*/
|
|
62
|
+
transformMode?: {
|
|
63
|
+
ssr?: RegExp[];
|
|
64
|
+
web?: RegExp[];
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export { DepsHandlingOptions, FetchFunction, FetchResult, ModuleCache, RawSourceMap, ResolveIdFunction, StartOfSourceMap, ViteNodeResolveId, ViteNodeRunnerOptions, ViteNodeServerOptions };
|
package/utils.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TransformResult } from 'vite';
|
|
2
|
+
|
|
3
|
+
declare const isWindows: boolean;
|
|
4
|
+
declare function slash(str: string): string;
|
|
5
|
+
declare function normalizeId(id: string, base?: string): string;
|
|
6
|
+
declare function isPrimitive(v: any): boolean;
|
|
7
|
+
declare function toFilePath(id: string, root: string): string;
|
|
8
|
+
declare function withInlineSourcemap(result: TransformResult): Promise<TransformResult>;
|
|
9
|
+
|
|
10
|
+
export { isPrimitive, isWindows, normalizeId, slash, toFilePath, withInlineSourcemap };
|