-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
334 lines (290 loc) · 9.62 KB
/
utils.js
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
import { promises as fs } from "node:fs";
import { dirname, extname, join, parse, relative } from "node:path";
import { promisify } from "node:util";
import { exec as execCb } from "node:child_process";
import deepmerge from "deepmerge";
import console from "console-ansi";
import ts from "typescript";
import { exports, legacy as legacyExport } from "resolve.exports";
import { sync as resolveSync } from "resolve";
import slash from "slash";
import picomatch from "picomatch";
import { glob } from "glob";
import * as cheerio from "cheerio";
import * as acorn from "acorn";
import * as acornWalk from "acorn-walk";
import * as aString from "astring";
const FILES_GLOB = {
javascript: ["**/*.js", "**/*.mjs"],
typescript: ["**/*.ts", "**/*.mts"],
react: ["**/*.jsx", "**/*.tsx"],
commonjs: ["**/*.cjs", "**/*.cts"],
assets: ["**/*.json", "**/*.css", "**/*.wasm"],
};
FILES_GLOB.typescriptAll = [...FILES_GLOB.typescript, "**/*.tsx", "**/*.cts"];
const RF_OPTIONS = { recursive: true, force: true };
const exec = promisify(execCb);
const readJson = async (path) => JSON.parse(await fs.readFile(path, "utf-8"));
const writeJson = async (path, obj, { merge = false } = {}) =>
await fs.writeFile(
path,
JSON.stringify(
merge ? deepmerge(await readJson(path), obj) : obj,
null,
2,
).trim() + "\n",
"utf-8",
);
const { version: VERSION, name: NAME } = await readJson(
new URL("./package.json", import.meta.url),
);
const listFormatter = new Intl.ListFormat("en");
const secondsFormatter = new Intl.NumberFormat("en", {
unit: "second",
style: "unit",
unitDisplay: "narrow",
});
const sortPaths = (
paths,
{ separator = "/", prepend = ["index.js"], append = ["types.js"] } = {},
) =>
paths
.map((p) => p.split(separator))
.sort((a, b) => {
for (let i = 0; i < Math.max(a.length, b.length); i++) {
if (!(i in a)) return -1;
if (!(i in b)) return 1;
if (prepend.includes(a[i]) || prepend.includes(b[i])) {
const aIndex = prepend.indexOf(a[i]);
const bIndex = prepend.indexOf(b[i]);
if (aIndex === -1) return 1;
if (bIndex === -1) return -1;
return Math.sign(aIndex - bIndex);
}
if (append.includes(a[i]) || append.includes(b[i])) {
const aIndex = append.indexOf(a[i]);
const bIndex = append.indexOf(b[i]);
if (aIndex === -1) return -1;
if (bIndex === -1) return 1;
return Math.sign(aIndex - bIndex);
}
if (a[i].toUpperCase() > b[i].toUpperCase()) return 1;
if (a[i].toUpperCase() < b[i].toUpperCase()) return -1;
if (a.length < b.length) return -1;
if (a.length > b.length) return 1;
}
})
.map((p) => p.join(separator));
const execCommand = async (command, options) => {
const { stdout, stderr } = await exec(command, options);
if (stderr) throw new Error(stderr);
return stdout.trim();
};
const checkUncommitedChanges = async (options) => {
if (await execCommand(`git status --porcelain`, options)) {
throw new Error("Commit your changes first");
}
};
function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
}
function isTypeScriptProject(cwd) {
const configPath = ts.findConfigFile(cwd, ts.sys.fileExists, "tsconfig.json");
if (!configPath) return false;
return ts.readConfigFile(configPath, ts.sys.readFile).config?.compilerOptions
?.outDir;
}
const pathExists = (path) =>
fs
.access(path)
.then(() => true)
.catch(() => false);
const getFileExtension = (file) => parse(file).ext;
const HMR_HOOK = await fs.readFile(
new URL("./utils/hot.js", import.meta.url),
"utf-8",
);
const htmlHotInject = async (options, req) => {
const html = await fs.readFile(join(options.cwd, req.url), "utf8");
const $ = cheerio.load(html);
// Append the hot script
$("head").append(`<script type="module">${HMR_HOOK}</script>`);
try {
// Set shimMode by parsing json or window.esmsOptions options
const esmsOptionsJSON = $("script[type='esms-options']");
let hasOptions;
if (esmsOptionsJSON.length) {
$("script[type='esms-options']").text(
JSON.stringify(
Object.assign(JSON.parse(esmsOptionsJSON.text()), { shimMode: true }),
),
);
hasOptions = true;
} else {
$("script").each((_, element) => {
const ast = acorn.parse($(element).text(), {
ecmaVersion: "latest",
sourceType: ["module", "module-shim"].includes(element.attribs.type)
? "module"
: "script",
});
acornWalk.full(ast, (node) => {
if (node.type === "AssignmentExpression") {
if (
["window", "globalThis"].includes(node.left?.object?.name) &&
node.left?.property?.name === "esmsInitOptions" &&
node.right?.type === "ObjectExpression"
) {
node.right.properties ||= [];
node.right.properties.push({
type: "Property",
method: false,
shorthand: false,
computed: false,
key: { type: "Identifier", name: "shimMode" },
value: { type: "Literal", value: "true", raw: '"true"' },
kind: "init",
});
hasOptions = true;
}
}
});
if (hasOptions) $(element).text(aString.generate(ast));
});
}
if (!hasOptions) {
$("head").append(
`<script type="esms-options">{ "shimMode": true }</script>`,
);
}
} catch (error) {
console.error(error);
}
return $.html();
};
const globOptions = { nodir: true };
const picomatchOptions = { capture: true, noglobstar: false };
const getWildcardEntries = async (cwd, key, value) => {
const directoryName = dirname(value);
const directoryFullPath = join(cwd, directoryName);
if (!(await pathExists(directoryFullPath))) {
throw new Error(`Directory "${directoryFullPath}" not found`);
}
const valueGlobStar = value.replace("*", "**");
const files = await glob(valueGlobStar, { cwd, ...globOptions });
const regex = picomatch.makeRe(valueGlobStar, picomatchOptions);
return Object.fromEntries(
files
.map((name) => {
const match = regex.exec(name);
if (match?.[1]) {
const [matchingPath, matchGroup] = match;
const normalizedKey = key.replace("*", matchGroup);
const normalizedFilePath = `./${matchingPath}`;
return [normalizedKey, normalizedFilePath];
}
})
.filter(Boolean),
);
};
const resolveEntryPoint = async (cwd, key, value, out = {}) => {
if (value.includes("*")) {
try {
Object.assign(out, await getWildcardEntries(cwd, key, value));
} catch (error) {
console.error(
`Error resolving "${cwd}" export: { "${key}": "${value}" }\n`,
error,
);
}
} else {
out[key] = value;
}
return out;
};
const resolveExports = async (options, src) => {
try {
const pkg = await readJson(join(src, "package.json"));
// Resolves "module" then "main", defaulting to Node.js behaviour
if (!pkg.exports) {
let entry = legacyExport(pkg, { fields: options.resolve.mainFields });
entry ??= (await pathExists(join(src, "index.js"))) && "./index.js";
if (entry && ![".js", ".mjs", ".cjs", ".node"].includes(extname(entry))) {
try {
entry = bareToDotRelativePath(
slash(relative(src, resolveSync(entry, { basedir: src }))),
);
} catch (error) {
console.error(error);
}
}
return { ".": entry };
}
// Resolve string exports
if (typeof pkg.exports === "string") return { ".": pkg.exports };
const resolvedExports = {};
const exportOptions = {
browser: options.resolve.browserField,
conditions: options.resolve.conditions,
};
// Resolve array exports (no conditions here)
if (Array.isArray(pkg.exports)) {
for (const entryValue of exports(pkg, ".")) {
await resolveEntryPoint(src, entryValue, entryValue, resolvedExports);
}
return resolvedExports;
}
// Resolve object of conditions
if (!Object.keys(pkg.exports)?.[0]?.startsWith(".")) {
const entryValue = exports(pkg, ".", exportOptions)?.[0];
return await resolveEntryPoint(src, ".", entryValue);
}
// Resolve object of exports
for (const key of Object.keys(pkg.exports)) {
if (!key.startsWith(".")) continue;
try {
const entryValue = exports(pkg, key, exportOptions)?.[0];
await resolveEntryPoint(src, key, entryValue, resolvedExports);
} catch (error) {
console.error(error);
}
}
return resolvedExports;
} catch (error) {
console.error(error);
return { ".": null };
}
};
const pick = (obj, keys) =>
Object.fromEntries(keys.map((key) => [key, obj[key]]));
const filterLeft = (a, b, compareFn) =>
a.filter((valueA) => !b.some((valueB) => compareFn(valueA, valueB)));
const arrayDifference = (a, b, compareFn = (a, b) => a === b) =>
filterLeft(a, b, compareFn).concat(filterLeft(b, a, compareFn));
const dotRelativeToBarePath = (p) =>
p.lastIndexOf("./") !== -1 ? p.substring(p.lastIndexOf("./") + 2) : p;
const bareToDotRelativePath = (p) => `./${p}`;
export {
FILES_GLOB,
NAME,
VERSION,
RF_OPTIONS,
listFormatter,
secondsFormatter,
readJson,
writeJson,
sortPaths,
exec,
execCommand,
checkUncommitedChanges,
escapeRegExp,
isTypeScriptProject,
pathExists,
getFileExtension,
htmlHotInject,
resolveExports,
pick,
arrayDifference,
dotRelativeToBarePath,
bareToDotRelativePath,
};