-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.js
438 lines (376 loc) · 12.6 KB
/
install.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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
import { promises as fs } from "node:fs";
import { createRequire } from "node:module";
import { dirname, extname, isAbsolute, join, parse, resolve } from "node:path";
import console from "console-ansi";
import deepmerge from "deepmerge";
import slash from "slash";
import { createFilter } from "@rollup/pluginutils";
import {
RF_OPTIONS,
resolveExports,
pathExists,
VERSION,
listFormatter,
arrayDifference,
dotRelativeToBarePath,
bareToDotRelativePath,
pick,
readJson,
writeJson,
} from "./utils.js";
import npm from "./npm.js";
import bundle from "./bundle.js";
const require = createRequire(import.meta.url);
const DEPENDENCY_TYPES = Object.freeze({
ALL: "all",
DEV: "dev",
PROD: "prod",
CUSTOM: "custom",
});
const DEPENDENCY_SAVE_TYPE_MAP = {
[DEPENDENCY_TYPES.ALL]: ["prod", "dev"],
[DEPENDENCY_TYPES.DEV]: ["dev"],
[DEPENDENCY_TYPES.PROD]: ["prod"],
[DEPENDENCY_TYPES.CUSTOM]: [],
};
const getDependencies = async (options, type, names = []) => {
const depsSelector =
type === DEPENDENCY_TYPES.CUSTOM
? "*"
: `*:is(${DEPENDENCY_SAVE_TYPE_MAP[type]
.map((selector) => `.${selector}`)
.join(",")})`;
return JSON.parse(
await npm.run(options.cwd, "query", [`':scope > ${depsSelector}'`]),
)
.map((dependency) =>
pick(dependency, ["name", "version", "dev", "realpath"]),
)
.filter(({ name }) => (names.length ? names.includes(name) : true));
};
const compareDependencies = ({ name, version }, { version: v, name: n }) =>
version === v && name === n;
const install = async (options) => {
// Check package.json exists
try {
await readJson(join(options.cwd, "package.json"));
} catch (error) {
console.error(`install - error reading package.json\n`, error);
return { error };
}
// Check dependencies
try {
const selectors = ["missing", "invalid", "extraneous"];
for (let selector of selectors) {
const results = JSON.parse(
await npm.run(options.cwd, "query", [`':${selector}'`]),
);
if (results.length) {
console.warn(
`install - ${selector} dependencies: ${listFormatter.format(results.map(({ pkgid }) => pkgid))}`,
);
}
}
} catch (error) {
// This is only a warning. Don't throw if anything unexpected happen.
}
// Get install type: an array of custom dependencies or one of DEPENDENCY_TYPES values
const type = Array.isArray(options.dependencies)
? DEPENDENCY_TYPES.CUSTOM
: options.dependencies;
// Resolve cache and output paths
await fs.mkdir(options.cacheFolder, { recursive: true });
const dependenciesCacheFile = join(options.cacheFolder, "dependencies.json");
const outputDir = isAbsolute(options.rollup.output.dir)
? options.rollup.output.dir
: join(options.cwd, options.rollup.output.dir);
const importMapFile = join(outputDir, "import-map.json");
// Get current dependencies
const dependencies =
type === DEPENDENCY_TYPES.CUSTOM && !options.dependencies.length
? []
: await getDependencies(
options,
type,
type === DEPENDENCY_TYPES.CUSTOM ? options.dependencies : [],
);
const dependenciesNames = dependencies.map(({ name }) => name);
const dependenciesHardcoded =
type === DEPENDENCY_TYPES.CUSTOM
? options.dependencies.filter((name) => !dependenciesNames.includes(name))
: [];
if (options.force) {
console.info("install - force install.");
} else if (!(await pathExists(outputDir))) {
// Check if dist folder exists
console.info("install - initial installation.");
} else {
try {
// Get cached values
// TODO: handle options.importMap change
let cachedVersion = "";
let cachedType = DEPENDENCY_TYPES.CUSTOM;
let cachedDependencies = {};
let cachedDependenciesHardcoded = [];
({
version: cachedVersion,
type: cachedType,
dependencies: cachedDependencies,
dependenciesHardcoded: cachedDependenciesHardcoded,
} = await readJson(dependenciesCacheFile));
// Check type or list of dependencies change
// Calling install from CLI will always force install
if (type !== cachedType) {
console.info("install - dependency type changed.");
} else if (VERSION !== cachedVersion) {
console.info("install - snowdev version changed.");
} else if (options.caller === "cli" && options.command === "install") {
console.info("install - from cli.");
} else {
const changedDependencies = arrayDifference(
dependencies,
cachedDependencies,
compareDependencies,
);
const changedDependenciesHardcoded = arrayDifference(
dependenciesHardcoded,
cachedDependenciesHardcoded,
);
if (
changedDependencies.length + changedDependenciesHardcoded.length ===
0
) {
console.log("install - all dependencies installed.");
return {
importMap: deepmerge(
await readJson(importMapFile),
options.importMap,
),
};
} else {
console.log(
`install - dependencies changed: ${listFormatter.format([
...new Set(
changedDependencies
.map((dependency) => dependency.name)
.concat(changedDependenciesHardcoded),
),
])}.`,
);
}
}
} catch (error) {
console.info(`install - no dependencies cached.`);
}
}
// Remove output to empty it or bundle in it
try {
await fs.rm(outputDir, RF_OPTIONS);
await fs.mkdir(outputDir, { recursive: true });
} catch (error) {
console.error(`install - error removing output directory\n`, error);
return { error };
}
const installTargets = dependenciesNames.concat(dependenciesHardcoded);
if (installTargets.length === 0) {
await writeJson(dependenciesCacheFile, {
version: VERSION,
type,
dependencies: {},
dependenciesHardcoded: {},
});
console.warn(`No ESM dependencies to install. Set "options.dependencies".`);
return { importMap: options.importMap };
}
const label = `install`;
console.time(label);
console.info(
`install - ESM dependencies: ${listFormatter.format(installTargets)}`,
);
let result;
let input = {};
let importMap = { imports: {} };
let copies = {};
const filter = createFilter(
options.resolve.include,
options.resolve.exclude,
{ resolve: options.cwd },
);
const copyFilter = createFilter(
options.resolve.copy,
options.resolve.exclude,
{ resolve: options.cwd },
);
const packageTargets = dependenciesNames.filter(
(target) => target !== "snowdev",
);
// Harcoded dependency can be:
// - a package listed in package.json
// - a relative file path
// - a package inside a package to be added as target
// - a file inside a package to be added as target
// - no relative folder support (use "local-dep-name": "file:./path-to-local-dep" in pacakge.json instead)
// - no absolute path support (what would the import map be?)
await Promise.allSettled(
dependenciesHardcoded.map(async (dependency) => {
try {
if (parse(dependency).ext) {
const isRelative = dependency.startsWith(".");
const resolvedExport = isRelative
? resolve(options.cwd, dependency)
: require.resolve(dependency, { paths: [options.cwd] });
if (!filter(resolvedExport)) {
console.info(`Filtered out export: ${resolvedExport}`);
} else {
const id = isRelative
? dotRelativeToBarePath(dependency)
: dependency;
const isCopiedExport = copyFilter(resolvedExport);
if (isCopiedExport) {
copies[resolvedExport] = join(outputDir, id);
} else {
// TODO: why not resolvedExport?
input[id] = dependency;
}
importMap.imports[id] = isRelative
? dependency
: bareToDotRelativePath(dependency);
}
} else {
packageTargets.push(dependency);
}
} catch (error) {
console.error(error);
}
}),
);
try {
console.log(`install - installing (${options.transpiler})...`);
const dependenciesPath = Object.fromEntries(
packageTargets.map((target) => {
let dependencyPath = dependencies.find(
({ name }) => name === target,
)?.realpath;
if (!dependencyPath) {
const parent = target
.split("/")
.slice(0, target.startsWith("@") ? 2 : 1)
.join("/");
const parentRealPath = dependencies.find(
({ name }) => name === parent,
)?.realpath;
if (parentRealPath) {
dependencyPath = join(
parentRealPath.slice(0, parentRealPath.lastIndexOf(parent)),
target,
);
}
}
return [target, dependencyPath];
}),
);
const resolvedExportsMap = deepmerge(
Object.fromEntries(
await Promise.all(
packageTargets.map(async (dependency) => [
dependency,
await resolveExports(options, dependenciesPath[dependency]),
]),
),
),
options.resolve.overrides,
);
// TODO: parallelize
for (let [dependency, entryPoints] of Object.entries(resolvedExportsMap)) {
const dependencyPath = dependenciesPath[dependency];
if (!(await pathExists(dependencyPath))) {
console.error(`Unresolved dependency: is "${dependency}" installed?`);
continue;
}
for (let [specifier, entryPoint] of Object.entries(entryPoints)) {
const isMain = specifier === ".";
const id = isMain ? dependency : slash(join(dependency, specifier));
if (!entryPoint) {
console.error(
`Unresolved export: "${dependency}" "${specifier}": is "${dependency}" installed or not exporting anything?`,
);
continue;
}
try {
const resolvedExport = join(dependencyPath, entryPoint);
if (!filter(resolvedExport)) {
console.info(`Filtered out export: ${resolvedExport}`);
continue;
}
if (!(await pathExists(resolvedExport))) {
console.error(`Unknown export: ${resolvedExport}`);
continue;
}
const isCopiedExport = copyFilter(resolvedExport);
if (isCopiedExport) {
copies[resolvedExport] = join(outputDir, id);
} else {
input[id] = resolvedExport;
}
importMap.imports[id] = bareToDotRelativePath(
isCopiedExport
? id
: packageTargets.includes(id) || extname(id) !== ".js"
? `${id}.js`
: id,
);
} catch (error) {
console.error(error);
}
}
}
// Caveats: this will throw if all dependencies are filtered out/have unknown exports
if (!Object.values(input).length) {
throw new Error(`No input dependency to install.`);
}
// Bundle
const bundleOptions = { ...options };
bundleOptions.rollup.input = { ...bundleOptions.rollup.input, input };
bundleOptions.rollup.output = {
...bundleOptions.rollup.output,
entryFileNames: ({ name }) =>
packageTargets.includes(name) || extname(name) !== ".js"
? `${name}.js`
: name,
};
result = await bundle(bundleOptions);
await Promise.allSettled(
Object.entries(copies).map(async ([resolvedExport, copyDestination]) => {
try {
await fs.mkdir(dirname(copyDestination), { recursive: true });
await fs.copyFile(resolvedExport, copyDestination);
} catch (error) {
console.error(error);
}
}),
);
if (!result.error) {
// Write import map
importMap = deepmerge(importMap, options.importMap);
await writeJson(importMapFile, importMap);
if (options.caller === "cli") {
await fs.writeFile(join(options.cwd, ".nojekyll"), "", "utf-8");
}
// Write cache
await writeJson(dependenciesCacheFile, {
version: VERSION,
type,
dependencies,
dependenciesHardcoded,
});
console.log("install - complete.");
}
} catch (error) {
console.error(error);
result = { error };
}
console.timeEnd(label);
return { ...result, input, importMap };
};
install.description = `Install ESM dependencies.`;
export default install;