@rushstack/rush-sdk 5.58.0 → 5.59.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rush-lib.d.ts +13 -7
- package/package.json +6 -6
package/dist/rush-lib.d.ts
CHANGED
|
@@ -721,12 +721,10 @@ export declare interface IExperimentsJson {
|
|
|
721
721
|
*/
|
|
722
722
|
buildCacheWithAllowWarningsInSuccessfulBuild?: boolean;
|
|
723
723
|
/**
|
|
724
|
-
* If true, the
|
|
724
|
+
* If true, the phased commands feature is enabled. To use this feature, create a "phased" command
|
|
725
725
|
* in common/config/rush/command-line.json.
|
|
726
|
-
*
|
|
727
|
-
* THIS FEATURE IS NOT READY FOR USAGE YET. SEE GITHUB #2300 FOR STATUS.
|
|
728
726
|
*/
|
|
729
|
-
|
|
727
|
+
phasedCommands?: boolean;
|
|
730
728
|
}
|
|
731
729
|
|
|
732
730
|
/**
|
|
@@ -1457,9 +1455,9 @@ export declare class ProjectChangeAnalyzer {
|
|
|
1457
1455
|
* undefined === data isn't available (i.e. - git isn't present)
|
|
1458
1456
|
*/
|
|
1459
1457
|
private _data;
|
|
1460
|
-
private _filteredData;
|
|
1461
|
-
private _projectStateCache;
|
|
1462
|
-
private _rushConfiguration;
|
|
1458
|
+
private readonly _filteredData;
|
|
1459
|
+
private readonly _projectStateCache;
|
|
1460
|
+
private readonly _rushConfiguration;
|
|
1463
1461
|
private readonly _git;
|
|
1464
1462
|
constructor(rushConfiguration: RushConfiguration);
|
|
1465
1463
|
/**
|
|
@@ -2475,6 +2473,14 @@ export declare class RushConstants {
|
|
|
2475
2473
|
* The name of the per-user Rush configuration data folder.
|
|
2476
2474
|
*/
|
|
2477
2475
|
static readonly rushUserConfigurationFolderName: string;
|
|
2476
|
+
/**
|
|
2477
|
+
* The name of the project `rush-logs` folder.
|
|
2478
|
+
*/
|
|
2479
|
+
static readonly rushLogsFolderName: string;
|
|
2480
|
+
/**
|
|
2481
|
+
* The expected prefix for phase names in "common/config/rush/command-line.json"
|
|
2482
|
+
*/
|
|
2483
|
+
static readonly phaseNamePrefix: '_phase:';
|
|
2478
2484
|
}
|
|
2479
2485
|
|
|
2480
2486
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.59.0-rc.0",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
"typings": "dist/rush-lib.d.ts",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@rushstack/node-core-library": "3.44.
|
|
15
|
+
"@rushstack/node-core-library": "3.44.3",
|
|
16
16
|
"@types/node-fetch": "1.6.9",
|
|
17
17
|
"tapable": "2.2.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@microsoft/rush-lib": "5.
|
|
21
|
-
"@rushstack/eslint-config": "2.5.
|
|
22
|
-
"@rushstack/heft": "0.44.
|
|
23
|
-
"@rushstack/heft-node-rig": "1.5.
|
|
20
|
+
"@microsoft/rush-lib": "5.59.0-rc.0",
|
|
21
|
+
"@rushstack/eslint-config": "2.5.1",
|
|
22
|
+
"@rushstack/heft": "0.44.1",
|
|
23
|
+
"@rushstack/heft-node-rig": "1.5.1",
|
|
24
24
|
"@types/heft-jest": "1.0.1",
|
|
25
25
|
"@types/node": "12.20.24",
|
|
26
26
|
"@types/semver": "7.3.5"
|