This repository was archived by the owner on Mar 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyarn-plugin-pin-deps.js
580 lines (491 loc) · 18.2 KB
/
yarn-plugin-pin-deps.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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
module.exports = {
name: `pin-deps`,
factory: (require) => {
const { Command } = require(`clipanion`);
const core = require(`@yarnpkg/core`);
const semver = require(`semver`);
const {
Cache,
Project,
Configuration,
ThrowReport,
StreamReport,
semverUtils,
structUtils,
Manifest,
} = core;
const { getPluginConfiguration } = require("@yarnpkg/cli");
const { ppath } = require("@yarnpkg/fslib");
const green = (text) => `\x1b[32m${text}\x1b[0m`;
const yellow = (text) => `\x1b[33m${text}\x1b[0m`;
const pRef = (pkg, opts) => {
const { scope, name, range } = pkg;
const { highlight } = opts ?? {};
const identity = (x) => x;
const hi = {
all: typeof highlight === "function" ? highlight : identity,
range: highlight?.range ?? identity,
name: highlight?.name ?? identity,
scope: highlight?.scope ?? identity,
};
return hi.all(
`${scope ? `@${hi.scope(scope)}/` : ""}${hi.name(name)}:${hi.range(
range
)}`
);
};
class PinDepsCommand extends Command {
async execute() {
this.configuration = await Configuration.find(
this.context.cwd,
getPluginConfiguration()
);
const { project } = await Project.find(
this.configuration,
this.context.cwd
);
this.project = project;
this.cache = await Cache.find(this.configuration);
await this.project.resolveEverything({
cache: this.cache,
report: new ThrowReport(),
});
// this.alsoIncludePackages;
// this.onlyWorkspaces;
// this.onlyPackages;
await StreamReport.start(
{
configuration: this.configuration,
stdout: this.context.stdout,
includeLogs: true,
json: false,
},
async (streamReport) => {
this.log = streamReport;
this.gatherWorkspaces();
this.createLocatorsByIdentMap();
await this.findPinnableDependencies();
await this.pinDependencies();
}
);
}
createLocatorsByIdentMap() {
const locatorsByIdent = new Map();
for (const [
descriptorHash,
locatorHash,
] of this.project.storedResolutions.entries()) {
const value = locatorHash;
const descriptor = this.project.storedDescriptors.get(descriptorHash);
const key = descriptor.identHash;
const locators = locatorsByIdent.get(key);
if (locators === undefined) {
locatorsByIdent.set(key, new Set([value]));
} else {
locatorsByIdent.set(key, locators.add(value));
}
}
this.locatorsByIdent = locatorsByIdent;
return this.locatorsByIdent;
}
gatherWorkspaces() {
let shouldCheckAllWorkspaces =
!this.onlyWorkspaces || this.onlyWorkspaces.length === 0;
this.workspaces = shouldCheckAllWorkspaces
? this.project.workspaces
: this.project.workspaces.filter((workspace) => {
let possibleWorkspaceRefs = [
workspace.cwd,
workspace.relativeCwd,
workspace.manifest?.name?.name,
].filter((pwr) => !!pwr);
let include = this.onlyWorkspaces.some((givenWorkspaceRef) =>
possibleWorkspaceRefs.includes(givenWorkspaceRef)
);
if (include) {
this.log.reportWarning(
`gatherWorkspaces`,
`${green(`✓`)} Including workspace ${
workspace.manifest.name.name
} at ${workspace.cwd}`
);
} else {
this.logVerboseWarning(
`gatherWorkspaces`,
`${yellow(`x`)} Excluding workspace ${
workspace.manifest.name.name
}, no match for ${possibleWorkspaceRefs
.map((r) => `'${r}'`)
.join(" or ")}`
);
}
return include;
});
return this.workspaces;
}
async pinDependencies() {
this.log.reportJson({
type: `info`,
name: `pinnableDependencies`,
displayName: `pinnableDependencies`,
data: this.pinnableJSON,
});
for (const workspace of this.workspaces) {
const { manifest, cwd: workspaceCwd } = workspace;
const manifestPath = ppath.join(workspaceCwd, Manifest.fileName);
const needsPinning = this.pinnableByWorkspaceCwd.get(workspaceCwd);
let numPinned = 0;
for (const [identHash, { version }] of needsPinning) {
// May cause unpredictable behavior if a package is both dependency and devDependency
let curDependency = manifest.dependencies.get(identHash);
let curDevDependency = manifest.devDependencies.get(identHash);
// note that curValue will be mutated when applying changes
let curValue = curDependency ?? curDevDependency;
// do not mutate oldValue. if typescript, would use readonly
// (makes copy for name,scope,range – YMMV for other properties)
const oldValue = { ...curValue };
// let curPkgRef = highlight => pRef({ ...oldValue }, {highlight})
if (curDependency && curDevDependency) {
this.log.reportWarning(
`${manifestPath}`,
`Possible package.json conflict between devDependencies and dependencies in ${curValue.name}`
);
}
if (curValue.range === version) {
continue;
}
const newDependency = Object.assign(curValue, {
range: version,
});
if (curDependency) {
manifest.dependencies.set(identHash, newDependency);
} else if (curDevDependency) {
manifest.devDependencies.set(identHash, newDependency);
}
this.log.reportInfo(
`${manifestPath}`,
`${green(`→`)} Pin ${pRef(oldValue, {
highlight: { range: yellow },
})} → ${pRef(newDependency, {
highlight: { range: green },
})}`
);
numPinned = numPinned + 1;
}
let needsPersist = numPinned > 0;
if (needsPersist) {
if (!this.dryRun) {
await workspace.persistManifest();
// console.log("(persist)");
}
this.log.reportInfo(
`${manifestPath}`,
`${green(`✓`)} Pinned ${numPinned} and ${
this.dryRun ? `saved[DRY RUN]` : "saved"
} to ${manifestPath}`
);
}
}
}
// really should not be rolling our own here, but easier for specific use case
static referencesPackage(refPkg, { scope, name, range }) {
let candidatePkg = pRef({ scope, name, range });
let exactMatch = refPkg === candidatePkg;
let rangeMatch = [`:${range}`, `*:${range}`].includes(refPkg);
return exactMatch || rangeMatch;
}
isDependencyExplicitlyIncluded({ scope, name, range }) {
let included = (this.alsoIncludePackages ?? []).some((includeRef) =>
PinDepsCommand.referencesPackage(includeRef, { scope, name, range })
);
let selected = (this.onlyPackages ?? []).some((selectRef) =>
PinDepsCommand.referencesPackage(selectRef, { scope, name, range })
);
return included || selected;
}
logVerboseWarning(prefix, msg) {
if (!this.verbose) {
return;
}
return this.log.reportWarning(prefix, msg);
}
logVerboseInfo(prefix, msg) {
if (!this.verbose) {
return;
}
return this.log.reportInfo(prefix, msg);
}
async findPinnableDependencies() {
this.pinnableByWorkspaceCwd = new Map();
// simplified version of pinnableByWorkspaceCwd, for reporting
// name:range -> version
this.reportablePinsByWorkspaceCwd = new Map();
for (let {
manifest: { dependencies, devDependencies },
cwd: workspaceCwd,
} of this.workspaces) {
let pinnableInWorkspace = new Map();
this.pinnableByWorkspaceCwd.set(workspaceCwd, pinnableInWorkspace);
let reportablePinsInWorkspace = new Map();
this.reportablePinsByWorkspaceCwd.set(
workspaceCwd,
reportablePinsInWorkspace
);
// Process regular dependencies
if (!this.onlyDevDependencies) {
for (const [identHash, dependency] of dependencies) {
this.processDependency([identHash, dependency], {
workspaceCwd,
pinnableInWorkspace,
reportablePinsInWorkspace,
isDevDependency: false,
});
}
}
// Process devDependencies
if (this.onlyDevDependencies || !this.ignoreDevDependencies) {
for (const [identHash, dependency] of devDependencies) {
this.processDependency([identHash, dependency], {
workspaceCwd,
pinnableInWorkspace,
reportablePinsInWorkspace,
isDevDependency: true,
});
}
}
}
}
processDependency([identHash, dependency], opts) {
const {
workspaceCwd,
pinnableInWorkspace,
reportablePinsInWorkspace,
} = opts;
const { scope, name, range } = dependency;
const depPkgRef = pRef({ scope, name, range });
let explicitlyIncluded = this.isDependencyExplicitlyIncluded({
name,
range,
});
if (!PinDepsCommand.needsPin(range)) {
if (explicitlyIncluded) {
this.logVerboseInfo(`${workspaceCwd}`, `Include: ${depPkgRef}`);
} else {
this.logVerboseWarning(`${workspaceCwd}`, `Skip: ${depPkgRef}`);
}
if (!explicitlyIncluded) {
return;
}
}
if (this.onlyPackages && !this.onlyPackages.includes(depPkgRef)) {
this.logVerboseWarning(`${workspaceCwd}`, `Omit: ${depPkgRef}`);
return;
}
const semverMatch = range.match(/^(.*)$/);
// Adapt logic for package locator lookup from deduplicate plugin:
// https://github.com/yarnplugins/yarn-plugin-deduplicate
const locatorHashes = this.locatorsByIdent.get(identHash);
let pinTo;
if (locatorHashes !== undefined && locatorHashes.size > 1) {
const candidates = Array.from(locatorHashes)
.map((locatorHash) => {
const pkg = this.project.storedPackages.get(locatorHash);
if (pkg === undefined) {
throw new TypeError(
`Can't find package for locator hash '${locatorHash}'`
);
}
if (structUtils.isVirtualLocator(pkg)) {
const sourceLocator = structUtils.devirtualizeLocator(pkg);
return this.project.storedPackages.get(
sourceLocator.locatorHash
);
}
return pkg;
})
.filter((sourcePackage) => {
if (sourcePackage.version === null) return false;
return explicitlyIncluded
? true
: semverMatch === null
? false
: semver.satisfies(sourcePackage.version, semverMatch[1]);
})
.sort((a, b) => {
return explicitlyIncluded
? -1
: semver.gt(a.version, b.version)
? -1
: 1;
});
if (candidates.length > 1) {
// https://stackoverflow.com/questions/22566379
const candidatePairs = candidates
.map((v, i) => candidates.slice(i + 1).map((w) => [v, w]))
.flat();
let numDupes = 0;
for (let [candidateA, candidateB] of candidatePairs) {
if (!structUtils.areLocatorsEqual(candidateA, candidateB)) {
numDupes = numDupes + 1;
}
}
if (numDupes > 0) {
this.log.reportWarningOnce(
`${workspaceCwd}`,
`Possible duplicate: ${depPkgRef} has ${candidates.length} candidates (${numDupes} conflicting pairs)`
);
}
}
pinTo = this.project.storedPackages.get(candidates[0].locatorHash);
} else if (locatorHashes.size === 1) {
pinTo = this.project.storedPackages.get(Array.from(locatorHashes)[0]);
} else {
this.log.reportWarning(
`${workspaceCwd}`,
`Missing locator: ${depPkgRef}`
);
}
if (pinTo.version === range) {
if (explicitlyIncluded) {
this.log.reportInfo(`${yellow("-")} Already pinned: ${depPkgRef}`);
} else {
this.logVerboseWarning(
`${workspaceCwd}`,
`already pinned ${depPkgRef} to ${pinTo.version}`
);
}
} else {
pinnableInWorkspace.set(identHash, pinTo);
reportablePinsInWorkspace.set(depPkgRef, pinTo.version);
this.logVerboseInfo(
`${workspaceCwd}`,
`will pin ${depPkgRef} to ${pinTo.version} in ${workspaceCwd}`
);
}
}
get pinnableJSON() {
// https://stackoverflow.com/questions/57611237
const toObject = (map = new Map()) =>
Object.fromEntries(
Array.from(map.entries(), ([k, v]) =>
v instanceof Map ? [k, toObject(v)] : [k, v]
)
);
return toObject(this.reportablePinsByWorkspaceCwd);
}
static needsPin(range) {
if (!semverUtils.validRange(range)) {
return false;
}
return true;
}
}
// Similarly we would be able to use a decorator here too, but since
// we're writing our code in JS-only we need to go through "addPath".
PinDepsCommand.addPath(`pin-deps`);
PinDepsCommand.addOption(
`dryRun`,
Command.Boolean("--dry", false, {
description: `Print the changes to stdout but do not apply them to package.json files.`,
})
);
PinDepsCommand.addOption(
`ignoreDevDependencies`,
Command.Boolean("--ignore-dev", false, {
description: `Ignore devDependencies (default is false, to pin dependencies and devDependencies).`,
})
);
PinDepsCommand.addOption(
`onlyDevDependencies`,
Command.Boolean("--only-dev", false, {
description: `Only devDependencies`,
})
);
PinDepsCommand.addOption(
`verbose`,
Command.Boolean("--verbose", false, {
description: `Print more information about skipped or already pinned packages`,
})
);
PinDepsCommand.addOption(
`onlyWorkspaces`,
Command.Array(`--workspace`, undefined, {
description: `To _only_ include a specific workspace (or workspaces)`,
})
);
PinDepsCommand.addOption(
`alsoIncludePackages`,
Command.Array(`--include`, undefined, {
description: `To pin a specific name:range that would otherwise be skipped`,
})
);
PinDepsCommand.addOption(
`onlyPackages`,
Command.Array(`--only`, undefined, {
description: `To _only_ include a specific name:range package (or packages).`,
})
);
// Show descriptive usage for a --help argument passed to this command
PinDepsCommand.usage = Command.Usage({
description: `pin-deps [--dry] [--include name:range]`,
details: `
Pin any unpinned dependencies to their currently resolved version.
Pass \`--dry\` for a dry-run. Otherwise, write changes to \`package.json\`
files directly. You will still need to \`yarn install\` for the changes
to take effect.
Search all workspaces by default. Pass \`--workspace\` flag(s) to focus
on one or multiple workspace(s).
Search all packages with semver range references by default. To include
otherwise skipped packages, specify \`--include name:range\`. To focus
only on specific package(s), specify \`--only name:range\`
`,
examples: [
[
`Update package.json in every workspace, to pin all packages with
semver range to their currently resolved version.`,
`$0 pin-deps`,
],
[
`Perform a "dry run" – do not apply any changes to files, but otherwise
run command as normally.`,
`$0 pin-deps --dry`,
],
[
`Include (do not skip) any packages with reference next:canary`,
`$0 pin-deps --include next:canary`,
],
[
`Include any package with range \`canary\` (not a regex, only works for this syntax)`,
`$0 pin-deps --include :canary`,
],
[
`Include _only_ packages with reference next:canary or material-ui/core:latest`,
`$0 pin-deps --only next:canary --only material-ui/core:latest`,
],
[
`Include _only_ workspaces by matching one of workspace.name, workspace.cwd, or workspace.relativeCwd`,
`$0 pin-deps --workspace acmeco/design --workspace acmeco/auth`,
],
[
`Ignore devDependencies (pin only regular dependencies)`,
`$0 pin-deps --ignore-dev`,
],
[
`Pin only devDependencies in acmeco/design or acmeco/components`,
`$0 pin-deps --only-dev --workspace acmeco/design --workspace acmeco/components`,
],
[
`Hacky: print a specific package resolution (\`yarn why\` or \`yarn info\` is likely better)`,
`$0 pin-deps --dry --workspace @acmeco/design --only next:canary`,
],
[
`Print verbose logs (including alerady pinned packages)`,
`$0 --verbose`,
],
],
});
return {
commands: [PinDepsCommand],
};
},
};