forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRushConfiguration.ts
More file actions
1259 lines (1088 loc) · 45.1 KB
/
RushConfiguration.ts
File metadata and controls
1259 lines (1088 loc) · 45.1 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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import * as path from 'path';
import * as fs from 'fs';
import * as semver from 'semver';
import {
JsonFile,
JsonSchema,
Path,
PackageName,
FileSystem
} from '@microsoft/node-core-library';
import { trueCasePathSync } from 'true-case-path';
import { Rush } from '../api/Rush';
import { RushConfigurationProject, IRushConfigurationProjectJson } from './RushConfigurationProject';
import { RushConstants } from '../logic/RushConstants';
import { ApprovedPackagesPolicy } from './ApprovedPackagesPolicy';
import { EventHooks } from './EventHooks';
import { VersionPolicyConfiguration } from './VersionPolicyConfiguration';
import { EnvironmentConfiguration } from './EnvironmentConfiguration';
import { CommonVersionsConfiguration } from './CommonVersionsConfiguration';
import { Utilities } from '../utilities/Utilities';
import { PackageManagerName, PackageManager } from './packageManager/PackageManager';
import { NpmPackageManager } from './packageManager/NpmPackageManager';
import { YarnPackageManager } from './packageManager/YarnPackageManager';
import { PnpmPackageManager } from './packageManager/PnpmPackageManager';
const MINIMUM_SUPPORTED_RUSH_JSON_VERSION: string = '0.0.0';
/**
* A list of known config filenames that are expected to appear in the "./common/config/rush" folder.
* To avoid confusion/mistakes, any extra files will be reported as an error.
*/
const knownRushConfigFilenames: string[] = [
'.npmrc',
RushConstants.pinnedVersionsFilename,
RushConstants.commonVersionsFilename,
RushConstants.browserApprovedPackagesFilename,
RushConstants.nonbrowserApprovedPackagesFilename,
RushConstants.versionPoliciesFilename,
RushConstants.commandLineFilename
];
/**
* Part of IRushConfigurationJson.
*/
export interface IApprovedPackagesPolicyJson {
reviewCategories?: string[];
ignoredNpmScopes?: string[];
}
/**
* Part of IRushConfigurationJson.
*/
export interface IRushGitPolicyJson {
allowedEmailRegExps?: string[];
sampleEmail?: string;
versionBumpCommitMessage?: string;
}
/**
* Part of IRushConfigurationJson.
* @beta
*/
export interface IEventHooksJson {
/**
* The list of scripts to run after every Rush build command finishes
*/
postRushBuild?: string[];
}
/**
* Part of IRushConfigurationJson.
*/
export interface IRushRepositoryJson {
/**
* The remote url of the repository. This helps "rush change" find the right remote to compare against.
*/
url: string;
}
/**
* Part of IRushConfigurationJson.
*/
export interface IPnpmOptionsJson {
strictPeerDependencies?: boolean;
resolutionStrategy?: ResolutionStrategy;
}
/**
* Part of IRushConfigurationJson.
*/
export interface IYarnOptionsJson {
ignoreEngines?: boolean;
}
/**
* Options defining an allowed variant as part of IRushConfigurationJson.
*/
export interface IRushVariantOptionsJson {
variantName: string;
description: string;
}
/**
* This represents the JSON data structure for the "rush.json" configuration file.
* See rush.schema.json for documentation.
*/
export interface IRushConfigurationJson {
$schema: string;
npmVersion?: string;
pnpmVersion?: string;
yarnVersion?: string;
rushVersion: string;
repository?: IRushRepositoryJson;
nodeSupportedVersionRange?: string;
suppressNodeLtsWarning?: boolean;
projectFolderMinDepth?: number;
projectFolderMaxDepth?: number;
approvedPackagesPolicy?: IApprovedPackagesPolicyJson;
gitPolicy?: IRushGitPolicyJson;
telemetryEnabled?: boolean;
projects: IRushConfigurationProjectJson[];
eventHooks?: IEventHooksJson;
hotfixChangeEnabled?: boolean;
pnpmOptions?: IPnpmOptionsJson;
yarnOptions?: IYarnOptionsJson;
ensureConsistentVersions?: boolean;
variants?: IRushVariantOptionsJson[];
}
/**
* This represents the JSON data structure for the "rush-link.json" data file.
*/
export interface IRushLinkJson {
localLinks: {
[name: string]: string[]
};
}
/**
* This represents the JSON data structure for the "current-variant.json" data file.
*/
export interface ICurrentVariantJson {
variant: string | null; // Use `null` instead of `undefined` because `undefined` is not handled by JSON.
}
/**
* Options that are only used when the PNPM package manager is selected.
*
* @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 {
/**
* 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;
/**
* The resolution strategy that will be used by PNPM.
*
* @remarks
* Configures the strategy used to select versions during installation.
*
* This feature requires PNPM version 3.1 or newer. It corresponds to the `--resolution-strategy` command-line
* option for PNPM. Possible values are `"fast"` and `"fewer-dependencies"`. PNPM's default is `"fast"`, but this
* may be incompatible with certain packages, for example the `@types` packages from DefinitelyTyped. Rush's default
* is `"fewer-dependencies"`, which causes PNPM to avoid installing a newer version if an already installed version
* can be reused; this is more similar to NPM's algorithm.
*
* For more background, see this discussion: {@link https://github.com/pnpm/pnpm/issues/1187}
*/
public readonly resolutionStrategy: ResolutionStrategy;
/** @internal */
public constructor(json: IPnpmOptionsJson) {
this.strictPeerDependencies = !!json.strictPeerDependencies;
this.resolutionStrategy = json.resolutionStrategy || 'fewer-dependencies';
}
}
/**
* Options that are only used when the yarn package manager is selected.
*
* @remarks
* It is valid to define these options in rush.json even if the yarn package manager
* is not being used.
*
* @public
*/
export class YarnOptionsConfiguration {
/**
* If true, then Rush will add the "--ignore-engines" option when invoking Yarn.
* This allows "rush install" to succeed if there are dependencies with engines defined in
* package.json which do not match the current environment.
*
* The default value is false.
*/
public readonly ignoreEngines: boolean;
/** @internal */
public constructor(json: IYarnOptionsJson) {
this.ignoreEngines = !!json.ignoreEngines;
}
}
/**
* Options for `RushConfiguration.tryFindRushJsonLocation`.
* @public
*/
export interface ITryFindRushJsonLocationOptions {
/**
* Whether to show verbose console messages. Defaults to false.
*/
showVerbose?: boolean; // Defaults to false (inverse of old `verbose` parameter)
/**
* The folder path where the search will start. Defaults tot he current working directory.
*/
startingFolder?: string; // Defaults to cwd
}
/**
* This represents the available PNPM resolution strategies as a string
* @public
*/
export type ResolutionStrategy = 'fewer-dependencies' | 'fast';
/**
* This represents the Rush configuration for a repository, based on the "rush.json"
* configuration file.
* @public
*/
export class RushConfiguration {
private static _jsonSchema: JsonSchema = JsonSchema.fromFile(path.join(__dirname, '../schemas/rush.schema.json'));
private _rushJsonFile: string;
private _rushJsonFolder: string;
private _changesFolder: string;
private _commonFolder: string;
private _commonTempFolder: string;
private _commonScriptsFolder: string;
private _commonRushConfigFolder: string;
private _packageManager: PackageManagerName;
private _packageManagerWrapper: PackageManager;
private _npmCacheFolder: string;
private _npmTmpFolder: string;
private _pnpmStoreFolder: string;
private _yarnCacheFolder: string;
private _shrinkwrapFilename: string;
private _tempShrinkwrapFilename: string;
private _tempShrinkwrapPreinstallFilename: string;
private _rushLinkJsonFilename: string;
private _currentVariantJsonFilename: string;
private _packageManagerToolVersion: string;
private _packageManagerToolFilename: string;
private _projectFolderMinDepth: number;
private _projectFolderMaxDepth: number;
private _ensureConsistentVersions: boolean;
private _suppressNodeLtsWarning: boolean;
private _variants: {
[variantName: string]: boolean;
};
// "approvedPackagesPolicy" feature
private _approvedPackagesPolicy: ApprovedPackagesPolicy;
// "gitPolicy" feature
private _gitAllowedEmailRegExps: string[];
private _gitSampleEmail: string;
private _gitVersionBumpCommitMessage: string | undefined;
// "hotfixChangeEnabled" feature
private _hotfixChangeEnabled: boolean;
// Repository info
private _repositoryUrl: string;
private _pnpmOptions: PnpmOptionsConfiguration;
private _yarnOptions: YarnOptionsConfiguration;
// Rush hooks
private _eventHooks: EventHooks;
private _telemetryEnabled: boolean;
private _projects: RushConfigurationProject[];
private _projectsByName: Map<string, RushConfigurationProject>;
private _versionPolicyConfiguration: VersionPolicyConfiguration;
/**
* Loads the configuration data from an Rush.json configuration file and returns
* an RushConfiguration object.
*/
public static loadFromConfigurationFile(rushJsonFilename: string): RushConfiguration {
let resolvedRushJsonFilename: string = path.resolve(rushJsonFilename);
// Load the rush.json before we fix the casing. If the case is wrong on a case-sensitive filesystem,
// the next line show throw.
const rushConfigurationJson: IRushConfigurationJson = JsonFile.load(resolvedRushJsonFilename);
try {
resolvedRushJsonFilename = trueCasePathSync(resolvedRushJsonFilename);
} catch (error) {
/* ignore errors from true-case-path */
}
// Check the Rush version *before* we validate the schema, since if the version is outdated
// then the schema may have changed. This should no longer be a problem after Rush 4.0 and the C2R wrapper,
// but we'll validate anyway.
const expectedRushVersion: string = rushConfigurationJson.rushVersion;
const rushJsonBaseName: string = path.basename(resolvedRushJsonFilename);
// If the version is missing or malformed, fall through and let the schema handle it.
if (expectedRushVersion && semver.valid(expectedRushVersion)) {
// Make sure the requested version isn't too old
if (semver.lt(expectedRushVersion, MINIMUM_SUPPORTED_RUSH_JSON_VERSION)) {
throw new Error(`${rushJsonBaseName} is version ${expectedRushVersion}, which is too old for this tool. ` +
`The minimum supported version is ${MINIMUM_SUPPORTED_RUSH_JSON_VERSION}.`);
}
// Make sure the requested version isn't too new.
//
// If the major/minor versions are the same, then we consider the file to be compatible.
// This is somewhat lax, e.g. "5.0.2-dev.3" will be assumed to be loadable by rush-lib 5.0.0.
//
// IMPORTANT: Whenever a breaking change is introduced for one of the config files, we must
// increment the minor version number for Rush.
if (semver.major(Rush.version) !== semver.major(expectedRushVersion)
|| semver.minor(Rush.version) !== semver.minor(expectedRushVersion)) {
// If the major/minor are different, then make sure it's an older version.
if (semver.lt(Rush.version, expectedRushVersion)) {
throw new Error(`Unable to load ${rushJsonBaseName} because its RushVersion is`
+ ` ${rushConfigurationJson.rushVersion}, whereas @microsoft/rush-lib is version ${Rush.version}.`
+ ` Consider upgrading the library.`);
}
}
}
RushConfiguration._jsonSchema.validateObject(rushConfigurationJson, resolvedRushJsonFilename);
return new RushConfiguration(rushConfigurationJson, resolvedRushJsonFilename);
}
public static loadFromDefaultLocation(options?: ITryFindRushJsonLocationOptions): RushConfiguration {
const rushJsonLocation: string | undefined = RushConfiguration.tryFindRushJsonLocation(options);
if (rushJsonLocation) {
return RushConfiguration.loadFromConfigurationFile(rushJsonLocation);
} else {
throw Utilities.getRushConfigNotFoundError();
}
}
/**
* Find the rush.json location and return the path, or undefined if a rush.json can't be found.
*/
public static tryFindRushJsonLocation(options?: ITryFindRushJsonLocationOptions): string | undefined {
const optionsIn: ITryFindRushJsonLocationOptions = options || {};
const verbose: boolean = optionsIn.showVerbose || false;
let currentFolder: string = optionsIn.startingFolder || process.cwd();
// Look upwards at parent folders until we find a folder containing rush.json
for (let i: number = 0; i < 10; ++i) {
const rushJsonFilename: string = path.join(currentFolder, 'rush.json');
if (FileSystem.exists(rushJsonFilename)) {
if (i > 0 && verbose) {
console.log('Found configuration in ' + rushJsonFilename);
}
if (verbose) {
console.log('');
}
return rushJsonFilename;
}
const parentFolder: string = path.dirname(currentFolder);
if (parentFolder === currentFolder) {
break;
}
currentFolder = parentFolder;
}
return undefined;
}
/**
* This generates the unique names that are used to create temporary projects
* in the Rush common folder.
* NOTE: sortedProjectJsons is sorted by the caller.
*/
private static _generateTempNamesForProjects(sortedProjectJsons: IRushConfigurationProjectJson[]):
Map<IRushConfigurationProjectJson, string> {
const tempNamesByProject: Map<IRushConfigurationProjectJson, string> =
new Map<IRushConfigurationProjectJson, string>();
const usedTempNames: Set<string> = new Set<string>();
// NOTE: projectJsons was already sorted in alphabetical order by the caller.
for (const projectJson of sortedProjectJsons) {
// If the name is "@ms/MyProject", extract the "MyProject" part
const unscopedName: string = PackageName.getUnscopedName(projectJson.packageName);
// Generate a unique like name "@rush-temp/MyProject", or "@rush-temp/MyProject-2" if
// there is a naming conflict
let counter: number = 0;
let tempProjectName: string = `${RushConstants.rushTempNpmScope}/${unscopedName}`;
while (usedTempNames.has(tempProjectName)) {
++counter;
tempProjectName = `${RushConstants.rushTempNpmScope}/${unscopedName}-${counter}`;
}
usedTempNames.add(tempProjectName);
tempNamesByProject.set(projectJson, tempProjectName);
}
return tempNamesByProject;
}
/**
* If someone adds a config file in the "common/rush/config" folder, it would be a bad
* experience for Rush to silently ignore their file simply because they misspelled the
* filename, or maybe it's an old format that's no longer supported. The
* _validateCommonRushConfigFolder() function makes sure that this folder only contains
* recognized config files.
*/
private static _validateCommonRushConfigFolder(
commonRushConfigFolder: string,
packageManager: PackageManagerName,
shrinkwrapFilename: string
): void {
if (!FileSystem.exists(commonRushConfigFolder)) {
console.log(`Creating folder: ${commonRushConfigFolder}`);
FileSystem.ensureFolder(commonRushConfigFolder);
return;
}
for (const filename of FileSystem.readFolder(commonRushConfigFolder)) {
// Ignore things that aren't actual files
const stat: fs.Stats = FileSystem.getLinkStatistics(path.join(commonRushConfigFolder, filename));
if (!stat.isFile() && !stat.isSymbolicLink()) {
continue;
}
// Ignore harmless file extensions
const fileExtension: string = path.extname(filename);
if (['.bak', '.disabled', '.md', '.old', '.orig'].indexOf(fileExtension) >= 0) {
continue;
}
const knownSet: Set<string> = new Set<string>(knownRushConfigFilenames.map(x => x.toUpperCase()));
// Add the shrinkwrap filename for the package manager to the known set.
knownSet.add(shrinkwrapFilename.toUpperCase());
// If the package manager is pnpm, then also add the pnpm file to the known set.
if (packageManager === 'pnpm') {
knownSet.add(RushConstants.pnpmfileFilename.toUpperCase());
}
// Is the filename something we know? If not, report an error.
if (!knownSet.has(filename.toUpperCase())) {
throw new Error(`An unrecognized file "${filename}" was found in the Rush config folder:`
+ ` ${commonRushConfigFolder}`);
}
}
const pinnedVersionsFilename: string = path.join(commonRushConfigFolder, RushConstants.pinnedVersionsFilename);
if (FileSystem.exists(pinnedVersionsFilename)) {
throw new Error('The "pinned-versions.json" config file is no longer supported;'
+ ' please move your settings to the "preferredVersions" field of a "common-versions.json" config file.'
+ ` (See the ${RushConstants.rushWebSiteUrl} documentation for details.)\n\n`
+ pinnedVersionsFilename);
}
}
/**
* The name of the package manager being used to install dependencies
*/
public get packageManager(): PackageManagerName {
return this._packageManager;
}
/**
* {@inheritdoc PackageManager}
*
* @privateremarks
* In the next major breaking API change, we will rename this property to "packageManager" and eliminate the
* old property with that name.
*
* @beta
*/
public get packageManagerWrapper(): PackageManager {
return this._packageManagerWrapper;
}
/**
* The absolute path to the "rush.json" configuration file that was loaded to construct this object.
*/
public get rushJsonFile(): string {
return this._rushJsonFile;
}
/**
* The absolute path of the folder that contains rush.json for this project.
*/
public get rushJsonFolder(): string {
return this._rushJsonFolder;
}
/**
* The folder that contains all change files.
*/
public get changesFolder(): string {
return this._changesFolder;
}
/**
* The fully resolved path for the "common" folder where Rush will store settings that
* affect all Rush projects. This is always a subfolder of the folder containing "rush.json".
* Example: `C:\MyRepo\common`
*/
public get commonFolder(): string {
return this._commonFolder;
}
/**
* The folder where Rush's additional config files are stored. This folder is always a
* subfolder called `config\rush` inside the common folder. (The `common\config` folder
* is reserved for configuration files used by other tools.) To avoid confusion or mistakes,
* Rush will report an error if this this folder contains any unrecognized files.
*
* Example: `C:\MyRepo\common\config\rush`
*/
public get commonRushConfigFolder(): string {
return this._commonRushConfigFolder;
}
/**
* The folder where temporary files will be stored. This is always a subfolder called "temp"
* under the common folder.
* Example: `C:\MyRepo\common\temp`
*/
public get commonTempFolder(): string {
return this._commonTempFolder;
}
/**
* The folder where automation scripts are stored. This is always a subfolder called "scripts"
* under the common folder.
* Example: `C:\MyRepo\common\scripts`
*/
public get commonScriptsFolder(): string {
return this._commonScriptsFolder;
}
/**
* The local folder that will store the NPM package cache. Rush does not rely on the
* npm's default global cache folder, because npm's caching implementation does not
* reliably handle multiple processes. (For example, if a build box is running
* "rush install" simultaneously for two different working folders, it may fail randomly.)
*
* Example: `C:\MyRepo\common\temp\npm-cache`
*/
public get npmCacheFolder(): string {
return this._npmCacheFolder;
}
/**
* The local folder where npm's temporary files will be written during installation.
* Rush does not rely on the global default folder, because it may be on a different
* hard disk.
*
* Example: `C:\MyRepo\common\temp\npm-tmp`
*/
public get npmTmpFolder(): string {
return this._npmTmpFolder;
}
/**
* The local folder where PNPM stores a global installation for every installed package
*
* Example: `C:\MyRepo\common\temp\pnpm-store`
*/
public get pnpmStoreFolder(): string {
return this._pnpmStoreFolder;
}
/**
* The local folder that will store the Yarn package cache.
*
* Example: `C:\MyRepo\common\temp\yarn-cache`
*/
public get yarnCacheFolder(): string {
return this._yarnCacheFolder;
}
/**
* The full path of the shrinkwrap file that is tracked by Git. (The "rush install"
* command uses a temporary copy, whose path is tempShrinkwrapFilename.)
* @remarks
* This property merely reports the filename; the file itself may not actually exist.
* Example: `C:\MyRepo\common\npm-shrinkwrap.json` or `C:\MyRepo\common\pnpm-lock.yaml`
*
* @deprecated Use `getCommittedShrinkwrapFilename` instead, which gets the correct common
* shrinkwrap file name for a given active variant.
*/
public get committedShrinkwrapFilename(): string {
return this.getCommittedShrinkwrapFilename();
}
/**
* The filename (without any path) of the shrinkwrap file that is used by the package manager.
* @remarks
* This property merely reports the filename; the file itself may not actually exist.
* Example: `npm-shrinkwrap.json` or `pnpm-lock.yaml`
*/
public get shrinkwrapFilename(): string {
return this._shrinkwrapFilename;
}
/**
* The full path of the temporary shrinkwrap file that is used during "rush install".
* This file may get rewritten by the package manager during installation.
* @remarks
* This property merely reports the filename; the file itself may not actually exist.
* Example: `C:\MyRepo\common\temp\npm-shrinkwrap.json` or `C:\MyRepo\common\temp\pnpm-lock.yaml`
*/
public get tempShrinkwrapFilename(): string {
return this._tempShrinkwrapFilename;
}
/**
* The full path of a backup copy of tempShrinkwrapFilename. This backup copy is made
* before installation begins, and can be compared to determine how the package manager
* modified tempShrinkwrapFilename.
* @remarks
* This property merely reports the filename; the file itself may not actually exist.
* Example: `C:\MyRepo\common\temp\npm-shrinkwrap-preinstall.json`
* or `C:\MyRepo\common\temp\pnpm-lock-preinstall.yaml`
*/
public get tempShrinkwrapPreinstallFilename(): string {
return this._tempShrinkwrapPreinstallFilename;
}
/**
* Returns an English phrase such as "shrinkwrap file" that can be used in logging messages
* to refer to the shrinkwrap file using appropriate terminology for the currently selected
* package manager.
*/
public get shrinkwrapFilePhrase(): string {
if (this._packageManager === 'yarn') {
// Eventually we'd like to be consistent with Yarn's terminology of calling this a "lock file",
// but a lot of Rush documentation uses "shrinkwrap" file and would all need to be updated.
return 'shrinkwrap file (yarn.lock)';
} else {
return 'shrinkwrap file';
}
}
/**
* The filename of the build dependency data file. By default this is
* called 'rush-link.json' resides in the Rush common folder.
* Its data structure is defined by IRushLinkJson.
*
* Example: `C:\MyRepo\common\temp\rush-link.json`
*/
public get rushLinkJsonFilename(): string {
return this._rushLinkJsonFilename;
}
/**
* The filename of the variant dependency data file. By default this is
* called 'current-variant.json' resides in the Rush common folder.
* Its data structure is defined by ICurrentVariantJson.
*
* Example: `C:\MyRepo\common\temp\current-variant.json`
*/
public get currentVariantJsonFilename(): string {
return this._currentVariantJsonFilename;
}
/**
* The version of the locally installed NPM tool. (Example: "1.2.3")
*/
public get packageManagerToolVersion(): string {
return this._packageManagerToolVersion;
}
/**
* The absolute path to the locally installed NPM tool. If "rush install" has not
* been run, then this file may not exist yet.
* Example: `C:\MyRepo\common\temp\npm-local\node_modules\.bin\npm`
*/
public get packageManagerToolFilename(): string {
return this._packageManagerToolFilename;
}
/**
* The minimum allowable folder depth for the projectFolder field in the rush.json file.
* This setting provides a way for repository maintainers to discourage nesting of project folders
* that makes the directory tree more difficult to navigate. The default value is 2,
* which implements a standard 2-level hierarchy of <categoryFolder>/<projectFolder>/package.json.
*/
public get projectFolderMinDepth(): number {
return this._projectFolderMinDepth;
}
/**
* The maximum allowable folder depth for the projectFolder field in the rush.json file.
* This setting provides a way for repository maintainers to discourage nesting of project folders
* that makes the directory tree more difficult to navigate. The default value is 2,
* which implements on a standard convention of <categoryFolder>/<projectFolder>/package.json.
*/
public get projectFolderMaxDepth(): number {
return this._projectFolderMaxDepth;
}
/**
* The "approvedPackagesPolicy" settings.
*/
public get approvedPackagesPolicy(): ApprovedPackagesPolicy {
return this._approvedPackagesPolicy;
}
/**
* [Part of the "gitPolicy" feature.]
* A list of regular expressions describing allowable email patterns for Git commits.
* They are case-insensitive anchored JavaScript RegExps.
* Example: `".*@example\.com"`
* This array will never be undefined.
*/
public get gitAllowedEmailRegExps(): string[] {
return this._gitAllowedEmailRegExps;
}
/**
* [Part of the "gitPolicy" feature.]
* An example valid email address that conforms to one of the allowedEmailRegExps.
* Example: `"foxtrot@example\.com"`
* This will never be undefined, and will always be nonempty if gitAllowedEmailRegExps is used.
*/
public get gitSampleEmail(): string {
return this._gitSampleEmail;
}
/**
* [Part of the "gitPolicy" feature.]
* The commit message to use when committing changes during 'rush publish'
*/
public get gitVersionBumpCommitMessage(): string | undefined {
return this._gitVersionBumpCommitMessage;
}
/**
* [Part of the "hotfixChange" feature.]
* Enables creating hotfix changes
*/
public get hotfixChangeEnabled(): boolean {
return this._hotfixChangeEnabled;
}
/**
* The remote url of the repository. This helps "rush change" find the right remote to compare against.
*/
public get repositoryUrl(): string {
return this._repositoryUrl;
}
/**
* Odd-numbered major versions of Node.js are experimental. Even-numbered releases
* spend six months in a stabilization period before the first Long Term Support (LTS) version.
* For example, 8.9.0 was the first LTS version of Node.js 8. Pre-LTS versions are not recommended
* for production usage because they frequently have bugs. They may cause Rush itself
* to malfunction.
*
* Rush normally prints a warning if it detects a pre-LTS Node.js version. If you are testing
* pre-LTS versions in preparation for supporting the first LTS version, you can use this setting
* to disable Rush's warning.
*/
public get suppressNodeLtsWarning(): boolean {
return this._suppressNodeLtsWarning;
}
/**
* If true, then consistent version specifiers for dependencies will be enforced.
* I.e. "rush check" is run before some commands.
*/
public get ensureConsistentVersions(): boolean {
return this._ensureConsistentVersions;
}
/**
* Indicates whether telemetry collection is enabled for Rush runs.
* @beta
*/
public get telemetryEnabled(): boolean {
return this._telemetryEnabled;
}
public get projects(): RushConfigurationProject[] {
return this._projects;
}
public get projectsByName(): Map<string, RushConfigurationProject> {
return this._projectsByName;
}
/**
* {@inheritDoc PnpmOptionsConfiguration}
*/
public get pnpmOptions(): PnpmOptionsConfiguration {
return this._pnpmOptions;
}
/**
* {@inheritDoc YarnOptionsConfiguration}
*/
public get yarnOptions(): YarnOptionsConfiguration {
return this._yarnOptions;
}
/**
* Settings from the common-versions.json config file.
* @remarks
* If the common-versions.json file is missing, this property will not be undefined.
* Instead it will be initialized in an empty state, and calling CommonVersionsConfiguration.save()
* will create the file.
*
* @deprecated Use `getCommonVersions` instead, which gets the correct common version data
* for a given active variant.
*/
public get commonVersions(): CommonVersionsConfiguration {
return this.getCommonVersions();
}
/**
* Gets the currently-installed variant, if an installation has occurred.
* For Rush operations which do not take a --variant parameter, this method
* determines which variant, if any, was last specified when performing "rush install"
* or "rush update".
*/
public get currentInstalledVariant(): string | undefined {
let variant: string | undefined;
if (FileSystem.exists(this._currentVariantJsonFilename)) {
const currentVariantJson: ICurrentVariantJson = JsonFile.load(this._currentVariantJsonFilename);
variant = currentVariantJson.variant || undefined;
}
return variant;
}
/**
* The rush hooks. It allows customized scripts to run at the specified point.
* @beta
*/
public get eventHooks(): EventHooks {
return this._eventHooks;
}
/**
* Gets the path to the common-versions.json config file for a specific variant.
* @param variant - The name of the current variant in use by the active command.
*/
public getCommonVersionsFilePath(variant?: string | undefined): string {
const commonVersionsFilename: string = path.join(this.commonRushConfigFolder,
...(variant ? [RushConstants.rushVariantsFolderName, variant] : []),
RushConstants.commonVersionsFilename);
return commonVersionsFilename;
}
/**
* Gets the settings from the common-versions.json config file for a specific variant.
* @param variant - The name of the current variant in use by the active command.
*/
public getCommonVersions(variant?: string | undefined): CommonVersionsConfiguration {
const commonVersionsFilename: string = this.getCommonVersionsFilePath(variant);
return CommonVersionsConfiguration.loadFromFile(commonVersionsFilename);
}
/**
* Gets the committed shrinkwrap file name for a specific variant.
* @param variant - The name of the current variant in use by the active command.
*/
public getCommittedShrinkwrapFilename(variant?: string | undefined): string {
if (variant) {
if (!this._variants[variant]) {
throw new Error(
`Invalid variant name '${variant}'. The provided variant parameter needs to be ` +
`one of the following from rush.json: ` +
`${Object.keys(this._variants).map((name: string) => `"${name}"`).join(', ')}.`);
}
}
const variantConfigFolderPath: string = this._getVariantConfigFolderPath(variant);
return path.join(variantConfigFolderPath, this._shrinkwrapFilename);
}
/**
* Gets the absolute path for "pnpmfile.js" for a specific variant.
* @param variant - The name of the current variant in use by the active command.
* @remarks
* The file path is returned even if PNPM is not configured as the package manager.
*/
public getPnpmfilePath(variant?: string | undefined): string {
const variantConfigFolderPath: string = this._getVariantConfigFolderPath(variant);
return path.join(
variantConfigFolderPath,
RushConstants.pnpmfileFilename);
}
/**
* Looks up a project in the projectsByName map. If the project is not found,
* then undefined is returned.
*/
public getProjectByName(projectName: string): RushConfigurationProject | undefined {
return this._projectsByName.get(projectName);
}
/**
* This is used e.g. by command-line interfaces such as "rush build --to example".
* If "example" is not a project name, then it also looks for a scoped name
* like `@something/example`. If exactly one project matches this heuristic, it
* is returned. Otherwise, undefined is returned.
*/
public findProjectByShorthandName(shorthandProjectName: string): RushConfigurationProject | undefined {
// Is there an exact match?
let result: RushConfigurationProject | undefined = this._projectsByName.get(shorthandProjectName);
if (result) {
return result;
}
// Is there an approximate match?
for (const project of this._projects) {
if (PackageName.getUnscopedName(project.packageName) === shorthandProjectName) {
if (result) {
// Ambiguous -- there is more than one match
return undefined;
} else {
result = project;
}
}
}
return result;
}
/**
* Looks up a project by its RushConfigurationProject.tempProjectName field.
* @returns The found project, or undefined if no match was found.
*/
public findProjectByTempName(tempProjectName: string): RushConfigurationProject | undefined {
// Is there an approximate match?
for (const project of this._projects) {
if (project.tempProjectName === tempProjectName) {
return project;
}
}
return undefined;
}
/**
* @beta
*/
public get versionPolicyConfiguration(): VersionPolicyConfiguration {
return this._versionPolicyConfiguration;
}
/**
* Returns the project for which the specified path is underneath that project's folder.
* If the path is not under any project's folder, returns undefined.
*/
public tryGetProjectForPath(currentFolderPath: string): RushConfigurationProject | undefined {
const resolvedPath: string = path.resolve(currentFolderPath);
for (const project of this.projects) {
if (Path.isUnderOrEqual(resolvedPath, project.projectFolder)) {
return project;
}