-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathresolver.ts
224 lines (190 loc) · 5.31 KB
/
resolver.ts
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
import { execFile } from "node:child_process";
import process from "node:process";
import path from "node:path";
import { fileURLToPath } from "node:url";
import { execAsync } from "./utils.js";
export type DenoMediaType =
| "TypeScript"
| "TSX"
| "JavaScript"
| "JSX"
| "Json";
interface ResolvedInfo {
kind: "esm";
local: string;
size: number;
mediaType: DenoMediaType;
specifier: string;
dependencies: Array<{
specifier: string;
code: {
specifier: string;
span: { start: unknown; end: unknown };
};
}>;
}
interface NpmResolvedInfo {
kind: "npm";
specifier: string;
npmPackage: string;
}
interface ExternalResolvedInfo {
kind: "external";
specifier: string;
}
interface ResolveError {
specifier: string;
error: string;
}
interface DenoInfoJsonV1 {
version: 1;
redirects: Record<string, string>;
roots: string[];
modules: Array<
NpmResolvedInfo | ResolvedInfo | ExternalResolvedInfo | ResolveError
>;
}
export interface DenoResolveResult {
id: string;
kind: "esm" | "npm";
loader: DenoMediaType | null;
dependencies: ResolvedInfo["dependencies"];
}
function isResolveError(
info: NpmResolvedInfo | ResolvedInfo | ExternalResolvedInfo | ResolveError,
): info is ResolveError {
return "error" in info && typeof info.error === "string";
}
let checkedDenoInstall = false;
const DENO_BINARY = process.platform === "win32" ? "deno.exe" : "deno";
export async function resolveDeno(
id: string,
cwd: string,
): Promise<DenoResolveResult | null> {
if (!checkedDenoInstall) {
try {
await execAsync(`${DENO_BINARY} --version`, { cwd });
checkedDenoInstall = true;
} catch {
throw new Error(
`Deno binary could not be found. Install Deno to resolve this error.`,
);
}
}
// There is no JS-API in Deno to get the final file path in Deno's
// cache directory. The `deno info` command reveals that information
// though, so we can use that.
const output = await new Promise<string | null>((resolve, reject) => {
execFile(DENO_BINARY, ["info", "--json", id], { cwd }, (error, stdout) => {
if (error) {
if (String(error).includes("Integrity check failed")) {
reject(error);
} else {
resolve(null);
}
} else resolve(stdout);
});
});
if (output === null) return null;
const json = JSON.parse(output) as DenoInfoJsonV1;
const actualId = json.roots[0];
// Find the final resolved cache path. First, we need to check
// if the redirected specifier, which represents the final specifier.
// This is often used for `http://` imports where a server can do
// redirects.
const redirected = json.redirects[actualId] ?? actualId;
// Find the module information based on the redirected speciffier
const mod = json.modules.find((info) => info.specifier === redirected);
if (mod === undefined) return null;
// Specifier not found by deno
if (isResolveError(mod)) {
return null;
}
if (mod.kind === "esm") {
return {
id: mod.local,
kind: mod.kind,
loader: mod.mediaType,
dependencies: mod.dependencies,
};
} else if (mod.kind === "npm") {
return {
id: mod.npmPackage,
kind: mod.kind,
loader: null,
dependencies: [],
};
} else if (mod.kind === "external") {
// Let vite handle this
return null;
}
throw new Error(`Unsupported: ${JSON.stringify(mod, null, 2)}`);
}
export async function resolveViteSpecifier(
id: string,
cache: Map<string, DenoResolveResult>,
root: string,
importer?: string,
) {
// Resolve import map
if (!id.startsWith(".") && !id.startsWith("/")) {
try {
id = import.meta.resolve(id);
} catch {
// Ignore: not resolvable
}
}
if (importer && isDenoSpecifier(importer)) {
const { resolved: parent } = parseDenoSpecifier(importer);
const cached = cache.get(parent);
if (cached === undefined) return;
const found = cached.dependencies.find((dep) => dep.specifier === id);
if (found === undefined) return;
// Check if we need to continue resolution
id = found.code.specifier;
if (id.startsWith("file://")) {
return fileURLToPath(id);
}
}
const resolved = cache.get(id) ?? await resolveDeno(id, root);
// Deno cannot resolve this
if (resolved === null) return;
if (resolved.kind === "npm") {
return null;
}
cache.set(resolved.id, resolved);
// Vite can load this
if (
resolved.loader === null ||
resolved.id.startsWith(path.resolve(root)) &&
!path.relative(root, resolved.id).startsWith(".")
) {
return resolved.id;
}
// We must load it
return toDenoSpecifier(resolved.loader, id, resolved.id);
}
export type DenoSpecifierName = string & { __brand: "deno" };
export function isDenoSpecifier(str: string): str is DenoSpecifierName {
return str.startsWith("\0deno");
}
export function toDenoSpecifier(
loader: DenoMediaType,
id: string,
resolved: string,
): DenoSpecifierName {
return `\0deno::${loader}::${id}::${resolved}` as DenoSpecifierName;
}
export function parseDenoSpecifier(spec: DenoSpecifierName): {
loader: DenoMediaType;
id: string;
resolved: string;
} {
const [_, loader, id, resolved] = spec.split("::") as [
string,
string,
DenoMediaType,
string,
];
return { loader: loader as DenoMediaType, id, resolved };
}