-
Notifications
You must be signed in to change notification settings - Fork 683
Expand file tree
/
Copy pathPnpmOptionsConfiguration.ts
More file actions
613 lines (568 loc) · 24.5 KB
/
PnpmOptionsConfiguration.ts
File metadata and controls
613 lines (568 loc) · 24.5 KB
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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import { JsonFile, type JsonObject } from '@rushstack/node-core-library';
import { NonProjectConfigurationFile } from '@rushstack/heft-config-file';
import { ConsoleTerminalProvider, Terminal } from '@rushstack/terminal';
import {
type IPackageManagerOptionsJsonBase,
PackageManagerOptionsConfigurationBase
} from '../base/BasePackageManagerOptionsConfiguration';
import { EnvironmentConfiguration } from '../../api/EnvironmentConfiguration';
import schemaJson from '../../schemas/pnpm-config.schema.json';
/**
* This represents the available PNPM store options
* @public
*/
export type PnpmStoreLocation = 'local' | 'global';
/**
* @deprecated Use {@link PnpmStoreLocation} instead
* @public
*/
export type PnpmStoreOptions = PnpmStoreLocation;
/**
* Possible values for the `resolutionMode` setting in Rush's pnpm-config.json file.
* @remarks
* These modes correspond to PNPM's `resolution-mode` values, which are documented here:
* {@link https://pnpm.io/npmrc#resolution-mode}
*
* @public
*/
export type PnpmResolutionMode = 'highest' | 'time-based' | 'lowest-direct';
/**
* Possible values for the `trustPolicy` setting in Rush's pnpm-config.json file.
* @remarks
* These values correspond to PNPM's `trust-policy` setting, which is documented here:
* {@link https://pnpm.io/settings#trustpolicy}
*
* @public
*/
export type PnpmTrustPolicy = 'no-downgrade' | 'off';
/**
* Possible values for the `pnpmLockfilePolicies` setting in Rush's pnpm-config.json file.
* @public
*/
export interface IPnpmLockfilePolicies {
/**
* Forbid sha1 hashes in `pnpm-lock.yaml`
*/
disallowInsecureSha1?: {
enabled: boolean;
exemptPackageVersions: Record<string, string[]>;
};
}
/**
* @public
*/
export interface IPnpmPeerDependencyRules {
ignoreMissing?: string[];
allowAny?: string[];
allowedVersions?: Record<string, string>;
}
/**
* @public
*/
export interface IPnpmPeerDependenciesMeta {
[packageName: string]: {
optional?: boolean;
};
}
/**
* @public
*/
export interface IPnpmPackageExtension {
dependencies?: Record<string, string>;
optionalDependencies?: Record<string, string>;
peerDependencies?: Record<string, string>;
peerDependenciesMeta?: IPnpmPeerDependenciesMeta;
}
/**
* Part of IRushConfigurationJson.
* @internal
*/
export interface IPnpmOptionsJson extends IPackageManagerOptionsJsonBase {
$schema?: string;
/**
* {@inheritDoc PnpmOptionsConfiguration.pnpmStore}
*/
pnpmStore?: PnpmStoreLocation;
/**
* {@inheritDoc PnpmOptionsConfiguration.strictPeerDependencies}
*/
strictPeerDependencies?: boolean;
/**
* {@inheritDoc PnpmOptionsConfiguration.preventManualShrinkwrapChanges}
*/
preventManualShrinkwrapChanges?: boolean;
/**
* {@inheritDoc PnpmOptionsConfiguration.useWorkspaces}
*/
useWorkspaces?: boolean;
/**
* {@inheritDoc PnpmOptionsConfiguration.globalOverrides}
*/
globalOverrides?: Record<string, string>;
/**
* {@inheritDoc PnpmOptionsConfiguration.globalPeerDependencyRules}
*/
globalPeerDependencyRules?: IPnpmPeerDependencyRules;
/**
* {@inheritDoc PnpmOptionsConfiguration.globalPackageExtensions}
*/
globalPackageExtensions?: Record<string, IPnpmPackageExtension>;
/**
* {@inheritDoc PnpmOptionsConfiguration.globalNeverBuiltDependencies}
*/
globalNeverBuiltDependencies?: string[];
/**
* {@inheritDoc PnpmOptionsConfiguration.globalOnlyBuiltDependencies}
*/
globalOnlyBuiltDependencies?: string[];
/**
* {@inheritDoc PnpmOptionsConfiguration.globalIgnoredOptionalDependencies}
*/
globalIgnoredOptionalDependencies?: string[];
/**
* {@inheritDoc PnpmOptionsConfiguration.globalAllowedDeprecatedVersions}
*/
globalAllowedDeprecatedVersions?: Record<string, string>;
/**
* {@inheritDoc PnpmOptionsConfiguration.globalPatchedDependencies}
*/
globalPatchedDependencies?: Record<string, string>;
/**
* {@inheritDoc PnpmOptionsConfiguration.unsupportedPackageJsonSettings}
*/
unsupportedPackageJsonSettings?: unknown;
/**
* {@inheritDoc PnpmOptionsConfiguration.resolutionMode}
*/
resolutionMode?: PnpmResolutionMode;
/**
* {@inheritDoc PnpmOptionsConfiguration.autoInstallPeers}
*/
autoInstallPeers?: boolean;
/**
* {@inheritDoc PnpmOptionsConfiguration.minimumReleaseAge}
*/
minimumReleaseAge?: number;
/**
* {@inheritDoc PnpmOptionsConfiguration.minimumReleaseAgeExclude}
*/
minimumReleaseAgeExclude?: string[];
/**
* {@inheritDoc PnpmOptionsConfiguration.trustPolicy}
*/
trustPolicy?: PnpmTrustPolicy;
/**
* {@inheritDoc PnpmOptionsConfiguration.trustPolicyExclude}
*/
trustPolicyExclude?: string[];
/**
* {@inheritDoc PnpmOptionsConfiguration.trustPolicyIgnoreAfter}
*/
trustPolicyIgnoreAfter?: number;
/**
* {@inheritDoc PnpmOptionsConfiguration.alwaysInjectDependenciesFromOtherSubspaces}
*/
alwaysInjectDependenciesFromOtherSubspaces?: boolean;
/**
* {@inheritDoc PnpmOptionsConfiguration.alwaysFullInstall}
*/
alwaysFullInstall?: boolean;
/**
* {@inheritDoc PnpmOptionsConfiguration.pnpmLockfilePolicies}
*/
pnpmLockfilePolicies?: IPnpmLockfilePolicies;
/**
* {@inheritDoc PnpmOptionsConfiguration.globalCatalogs}
*/
globalCatalogs?: Record<string, Record<string, string>>;
}
/**
* Options that are only used when the PNPM package manager is selected.
* Use this class to load "common/config/rush/pnpm-config.json" file,
* or, load json from "pnpmOptions" field in "rush.json" for legacy support.
*
* @remarks
* It is valid to define these options in rush.json even if the PNPM package manager
* is not being used.
*
* @public
*/
export class PnpmOptionsConfiguration extends PackageManagerOptionsConfigurationBase {
private readonly _json: JsonObject;
private _globalPatchedDependencies: Record<string, string> | undefined;
/**
* The method used to resolve the store used by PNPM.
*
* @remarks
* Available options:
* - local: Use the standard Rush store path: common/temp/pnpm-store
* - global: Use PNPM's global store path
*/
public readonly pnpmStore: PnpmStoreLocation;
/**
* This setting determines how PNPM chooses version numbers during `rush update`.
*
* @remarks
* For example, suppose `lib-x@3.0.0` depends on `"lib-y": "^1.2.3"` whose latest major
* releases are `1.8.9` and `2.3.4`. The resolution mode `lowest-direct` might choose
* `lib-y@1.2.3`, wheres `highest` will choose 1.8.9, and `time-based` will pick the
* highest compatible version at the time when `lib-x@3.0.0` itself was published (ensuring
* that the version could have been tested by the maintainer of "lib-x"). For local workspace
* projects, `time-based` instead works like `lowest-direct`, avoiding upgrades unless
* they are explicitly requested. Although `time-based` is the most robust option, it may be
* slightly slower with registries such as npmjs.com that have not implemented an optimization.
*
* IMPORTANT: Be aware that PNPM 8.0.0 initially defaulted to `lowest-direct` instead of
* `highest`, but PNPM reverted this decision in 8.6.12 because it caused confusion for users.
* Rush version 5.106.0 and newer avoids this confusion by consistently defaulting to
* `highest` when `resolutionMode` is not explicitly set in pnpm-config.json or .npmrc,
* regardless of your PNPM version.
*
* PNPM documentation: https://pnpm.io/npmrc#resolution-mode
*
* Possible values are: `highest`, `time-based`, and `lowest-direct`.
* The default is `highest`.
*/
public readonly resolutionMode: PnpmResolutionMode | undefined;
/**
* The path for PNPM to use as the store directory.
*
* Will be overridden by environment variable RUSH_PNPM_STORE_PATH
*/
public readonly pnpmStorePath: string;
/**
* If true, then Rush will add the "--strict-peer-dependencies" option when invoking PNPM.
*
* @remarks
* This causes "rush install" to fail if there are unsatisfied peer dependencies, which is
* an invalid state that can cause build failures or incompatible dependency versions.
* (For historical reasons, JavaScript package managers generally do not treat this invalid state
* as an error.)
*
* The default value is false. (For now.)
*/
public readonly strictPeerDependencies: boolean;
/**
* If true, then `rush install` will report an error if manual modifications
* were made to the PNPM shrinkwrap file without running `rush update` afterwards.
*
* @remarks
* This feature protects against accidental inconsistencies that may be introduced
* if the PNPM shrinkwrap file (`pnpm-lock.yaml`) is manually edited. When this
* feature is enabled, `rush update` will write a hash of the shrinkwrap contents to repo-state.json,
* and then `rush update` and `rush install` will validate the hash. Note that this does not prohibit
* manual modifications, but merely requires `rush update` be run
* afterwards, ensuring that PNPM can report or repair any potential inconsistencies.
*
* To temporarily disable this validation when invoking `rush install`, use the
* `--bypass-policy` command-line parameter.
*
* The default value is false.
*/
public readonly preventManualShrinkwrapChanges: boolean;
/**
* If true, then Rush will use the workspaces feature to install and link packages when invoking PNPM.
*
* @remarks
* The default value is true. (For now.)
*/
public readonly useWorkspaces: boolean;
/**
* When true, any missing non-optional peer dependencies are automatically installed.
*
* @remarks
* The default value is same as PNPM default value. (In PNPM 8.x, this value is true)
*/
public readonly autoInstallPeers: boolean | undefined;
/**
* The minimum number of minutes that must pass after a version is published before pnpm will install it.
* This setting helps reduce the risk of installing compromised packages, as malicious releases are typically
* discovered and removed within a short time frame.
*
* @remarks
* (SUPPORTED ONLY IN PNPM 10.16.0 AND NEWER)
*
* PNPM documentation: https://pnpm.io/settings#minimumreleaseage
*
* The default value is 0 (disabled).
*/
public readonly minimumReleaseAge: number | undefined;
/**
* List of package names or patterns that are excluded from the minimumReleaseAge check.
* These packages will always install the newest version immediately, even if minimumReleaseAge is set.
*
* @remarks
* (SUPPORTED ONLY IN PNPM 10.16.0 AND NEWER)
*
* PNPM documentation: https://pnpm.io/settings#minimumreleaseageexclude
*
* Example: ["webpack", "react", "\@myorg/*"]
*/
public readonly minimumReleaseAgeExclude: string[] | undefined;
/**
* The trust policy controls whether pnpm should block installation of package versions where the
* trust level has decreased (e.g., a package previously published with provenance is now published
* without it). Setting this to `"no-downgrade"` enables the protection.
*
* @remarks
* (SUPPORTED ONLY IN PNPM 10.21.0 AND NEWER)
*
* PNPM documentation: https://pnpm.io/settings#trustpolicy
*/
public readonly trustPolicy: PnpmTrustPolicy | undefined;
/**
* List of package names or patterns that are excluded from the trust policy check.
* These packages will be allowed to install even if their trust level has decreased.
*
* @remarks
* (SUPPORTED ONLY IN PNPM 10.22.0 AND NEWER)
*
* PNPM documentation: https://pnpm.io/settings#trustpolicyexclude
*
* Example: ["webpack", "react", "\@myorg/*"]
*/
public readonly trustPolicyExclude: string[] | undefined;
/**
* The number of minutes after which pnpm will ignore trust level downgrades. Packages published
* longer ago than this threshold will not be blocked even if their trust level has decreased.
*
* @remarks
* (SUPPORTED ONLY IN PNPM 10.27.0 AND NEWER)
*
* PNPM documentation: https://pnpm.io/settings#trustpolicyignoreafter
*/
public readonly trustPolicyIgnoreAfter: number | undefined;
/**
* If true, then `rush update` add injected install options for all cross-subspace
* workspace dependencies, to avoid subspace doppelganger issue.
*
* Here, the injected install refers to PNPM's PNPM's "injected dependencies"
* feature. Learn more: https://pnpm.io/package_json#dependenciesmeta
*
* @remarks
* The default value is false.
*/
public readonly alwaysInjectDependenciesFromOtherSubspaces: boolean | undefined;
/**
* The "globalOverrides" setting provides a simple mechanism for overriding version selections
* for all dependencies of all projects in the monorepo workspace. The settings are copied
* into the `pnpm.overrides` field of the `common/temp/package.json` file that is generated
* by Rush during installation.
*
* Order of precedence: `.pnpmfile.cjs` has the highest precedence, followed by
* `unsupportedPackageJsonSettings`, `globalPeerDependencyRules`, `globalPackageExtensions`,
* and `globalOverrides` has lowest precedence.
*
* PNPM documentation: https://pnpm.io/package_json#pnpmoverrides
*/
public readonly globalOverrides: Record<string, string> | undefined;
/**
* The `globalPeerDependencyRules` setting provides various settings for suppressing validation errors
* that are reported during installation with `strictPeerDependencies=true`. The settings are copied
* into the `pnpm.peerDependencyRules` field of the `common/temp/package.json` file that is generated
* by Rush during installation.
*
* Order of precedence: `.pnpmfile.cjs` has the highest precedence, followed by
* `unsupportedPackageJsonSettings`, `globalPeerDependencyRules`, `globalPackageExtensions`,
* and `globalOverrides` has lowest precedence.
*
* https://pnpm.io/package_json#pnpmpeerdependencyrules
*/
public readonly globalPeerDependencyRules: IPnpmPeerDependencyRules | undefined;
/**
* The `globalPackageExtension` setting provides a way to patch arbitrary package.json fields
* for any PNPM dependency of the monorepo. The settings are copied into the `pnpm.packageExtensions`
* field of the `common/temp/package.json` file that is generated by Rush during installation.
* The `globalPackageExtension` setting has similar capabilities as `.pnpmfile.cjs` but without
* the downsides of an executable script (nondeterminism, unreliable caching, performance concerns).
*
* Order of precedence: `.pnpmfile.cjs` has the highest precedence, followed by
* `unsupportedPackageJsonSettings`, `globalPeerDependencyRules`, `globalPackageExtensions`,
* and `globalOverrides` has lowest precedence.
*
* PNPM documentation: https://pnpm.io/package_json#pnpmpackageextensions
*/
public readonly globalPackageExtensions: Record<string, IPnpmPackageExtension> | undefined;
/**
* The `globalNeverBuiltDependencies` setting suppresses the `preinstall`, `install`, and `postinstall`
* lifecycle events for the specified NPM dependencies. This is useful for scripts with poor practices
* such as downloading large binaries without retries or attempting to invoke OS tools such as
* a C++ compiler. (PNPM's terminology refers to these lifecycle events as "building" a package;
* it has nothing to do with build system operations such as `rush build` or `rushx build`.)
* The settings are copied into the `pnpm.neverBuiltDependencies` field of the `common/temp/package.json`
* file that is generated by Rush during installation.
*
* PNPM documentation: https://pnpm.io/package_json#pnpmneverbuiltdependencies
*/
public readonly globalNeverBuiltDependencies: string[] | undefined;
/**
* The `globalOnlyBuiltDependencies` setting specifies an allowlist of dependencies that are permitted
* to run build scripts (`preinstall`, `install`, and `postinstall` lifecycle events). This is the inverse
* of `globalNeverBuiltDependencies`. In PNPM 10.x, build scripts are disabled by default for security,
* so this setting is required to explicitly permit specific packages to run their build scripts.
* The settings are copied into the `pnpm.onlyBuiltDependencies` field of the `common/temp/package.json`
* file that is generated by Rush during installation.
*
* (SUPPORTED ONLY IN PNPM 10.1.0 AND NEWER)
*
* PNPM documentation: https://pnpm.io/package_json#pnpmonlybuiltdependencies
*/
public readonly globalOnlyBuiltDependencies: string[] | undefined;
/**
* The ignoredOptionalDependencies setting allows you to exclude certain optional dependencies from being installed
* during the Rush installation process. This can be useful when optional dependencies are not required or are
* problematic in specific environments (e.g., dependencies with incompatible binaries or platform-specific requirements).
* The listed dependencies will be treated as though they are missing, even if other packages specify them as optional
* dependencies. The settings are copied into the pnpm.ignoredOptionalDependencies field of the common/temp/package.json
* file that is generated by Rush during installation.
*
* (SUPPORTED ONLY IN PNPM 9.0.0 AND NEWER)
*
* PNPM documentation: https://pnpm.io/package_json#pnpmignoredoptionaldependencies
*/
public readonly globalIgnoredOptionalDependencies: string[] | undefined;
/**
* The `globalAllowedDeprecatedVersions` setting suppresses installation warnings for package
* versions that the NPM registry reports as being deprecated. This is useful if the
* deprecated package is an indirect dependency of an external package that has not released a fix.
* The settings are copied into the `pnpm.allowedDeprecatedVersions` field of the `common/temp/package.json`
* file that is generated by Rush during installation.
*
* PNPM documentation: https://pnpm.io/package_json#pnpmalloweddeprecatedversions
*
* If you are working to eliminate a deprecated version, it's better to specify `allowedDeprecatedVersions`
* in the package.json file for individual Rush projects.
*/
public readonly globalAllowedDeprecatedVersions: Record<string, string> | undefined;
/**
* (USE AT YOUR OWN RISK) This is a free-form property bag that will be copied into
* the `common/temp/package.json` file that is generated by Rush during installation.
* This provides a way to experiment with new PNPM features. These settings will override
* any other Rush configuration associated with a given JSON field except for `.pnpmfile.cjs`.
*
* USAGE OF THIS SETTING IS NOT SUPPORTED BY THE RUSH MAINTAINERS AND MAY CAUSE RUSH
* TO MALFUNCTION. If you encounter a missing PNPM setting that you believe should
* be supported, please create a GitHub issue or PR. Note that Rush does not aim to
* support every possible PNPM setting, but rather to promote a battle-tested installation
* strategy that is known to provide a good experience for large teams with lots of projects.
*/
public readonly unsupportedPackageJsonSettings: unknown | undefined;
public readonly jsonFilename: string | undefined;
/**
* The `pnpmLockfilePolicies` setting defines the policies that govern the `pnpm-lock.yaml` file.
*/
public readonly pnpmLockfilePolicies: IPnpmLockfilePolicies | undefined;
/**
* (EXPERIMENTAL) If "true", then filtered installs ("rush install --to my-project")
* will be disregarded, instead always performing a full installation of the lockfile.
* This setting is primarily useful with Rush subspaces which enable filtering across
* multiple lockfiles, if filtering may be inefficient or undesirable for certain lockfiles.
*
* The default value is false.
*/
/*[LINE "DEMO"]*/
public readonly alwaysFullInstall: boolean | undefined;
/**
* The `globalCatalogs` setting provides named catalogs for organizing dependency versions.
* Each catalog can be referenced using the `catalog:catalogName` protocol in package.json files
* (e.g., `catalog:react18`). The settings are written to the `catalogs` field of the
* `pnpm-workspace.yaml` file that is generated by Rush during installation.
*
* PNPM documentation: https://pnpm.io/catalogs
*/
public readonly globalCatalogs: Record<string, Record<string, string>> | undefined;
/**
* (GENERATED BY RUSH-PNPM PATCH-COMMIT) When modifying this property, make sure you know what you are doing.
*
* The `globalPatchedDependencies` is added/updated automatically when you run pnpm patch-commit
* command. It is a dictionary where the key should be the package name and exact version. The value
* should be a relative path to a patch file.
*
* PNPM documentation: https://pnpm.io/package_json#pnpmpatcheddependencies
*/
public get globalPatchedDependencies(): Record<string, string> | undefined {
return this._globalPatchedDependencies;
}
private constructor(json: IPnpmOptionsJson, commonTempFolder: string, jsonFilename?: string) {
super(json);
this._json = json;
this.jsonFilename = jsonFilename;
this.pnpmStore = json.pnpmStore || 'local';
if (EnvironmentConfiguration.pnpmStorePathOverride) {
this.pnpmStorePath = EnvironmentConfiguration.pnpmStorePathOverride;
} else if (this.pnpmStore === 'global') {
this.pnpmStorePath = '';
} else {
this.pnpmStorePath = `${commonTempFolder}/pnpm-store`;
}
this.strictPeerDependencies = !!json.strictPeerDependencies;
this.preventManualShrinkwrapChanges = !!json.preventManualShrinkwrapChanges;
this.useWorkspaces = !!json.useWorkspaces;
this.globalOverrides = json.globalOverrides;
this.globalPeerDependencyRules = json.globalPeerDependencyRules;
this.globalPackageExtensions = json.globalPackageExtensions;
this.globalNeverBuiltDependencies = json.globalNeverBuiltDependencies;
this.globalOnlyBuiltDependencies = json.globalOnlyBuiltDependencies;
this.globalIgnoredOptionalDependencies = json.globalIgnoredOptionalDependencies;
this.globalAllowedDeprecatedVersions = json.globalAllowedDeprecatedVersions;
this.unsupportedPackageJsonSettings = json.unsupportedPackageJsonSettings;
this._globalPatchedDependencies = json.globalPatchedDependencies;
this.resolutionMode = json.resolutionMode;
this.autoInstallPeers = json.autoInstallPeers;
this.minimumReleaseAge = json.minimumReleaseAge;
this.minimumReleaseAgeExclude = json.minimumReleaseAgeExclude;
this.trustPolicy = json.trustPolicy;
this.trustPolicyExclude = json.trustPolicyExclude;
this.trustPolicyIgnoreAfter = json.trustPolicyIgnoreAfter;
this.alwaysInjectDependenciesFromOtherSubspaces = json.alwaysInjectDependenciesFromOtherSubspaces;
this.alwaysFullInstall = json.alwaysFullInstall;
this.pnpmLockfilePolicies = json.pnpmLockfilePolicies;
this.globalCatalogs = json.globalCatalogs;
}
/** @internal */
public static loadFromJsonFileOrThrow(
jsonFilePath: string,
commonTempFolder: string
): PnpmOptionsConfiguration {
// TODO: plumb through the terminal
const terminal: Terminal = new Terminal(new ConsoleTerminalProvider());
const pnpmOptionsConfigFile: NonProjectConfigurationFile<IPnpmOptionsJson> =
new NonProjectConfigurationFile({
jsonSchemaObject: schemaJson
});
const pnpmConfigJson: IPnpmOptionsJson = pnpmOptionsConfigFile.loadConfigurationFile(
terminal,
jsonFilePath
);
pnpmConfigJson.$schema = pnpmOptionsConfigFile.getSchemaPropertyOriginalValue(pnpmConfigJson);
return new PnpmOptionsConfiguration(pnpmConfigJson || {}, commonTempFolder, jsonFilePath);
}
/** @internal */
public static loadFromJsonObject(
json: IPnpmOptionsJson,
commonTempFolder: string
): PnpmOptionsConfiguration {
return new PnpmOptionsConfiguration(json, commonTempFolder);
}
/**
* Updates patchedDependencies field of the PNPM options in the common/config/rush/pnpm-config.json file.
*/
public updateGlobalPatchedDependencies(patchedDependencies: Record<string, string> | undefined): void {
this._globalPatchedDependencies = patchedDependencies;
this._json.globalPatchedDependencies = patchedDependencies;
if (this.jsonFilename) {
JsonFile.save(this._json, this.jsonFilename, { updateExistingFile: true });
}
}
/**
* Updates globalOnlyBuiltDependencies field of the PNPM options in the common/config/rush/pnpm-config.json file.
*/
public updateGlobalOnlyBuiltDependencies(onlyBuiltDependencies: string[] | undefined): void {
this._json.globalOnlyBuiltDependencies = onlyBuiltDependencies;
if (this.jsonFilename) {
JsonFile.save(this._json, this.jsonFilename, { updateExistingFile: true });
}
}
}