@rushstack/rush-sdk 5.57.0-dev.2 → 5.57.0-dev.3
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 +8 -1
- package/package.json +3 -3
package/dist/rush-lib.d.ts
CHANGED
|
@@ -1461,7 +1461,14 @@ export declare class ProjectChangeAnalyzer {
|
|
|
1461
1461
|
* Gets a list of projects that have changed in the current state of the repo
|
|
1462
1462
|
* when compared to the specified branch.
|
|
1463
1463
|
*/
|
|
1464
|
-
|
|
1464
|
+
getProjectsWithChangesAsync(options: IGetChangedProjectsOptions): Promise<Set<RushConfigurationProject>>;
|
|
1465
|
+
/**
|
|
1466
|
+
* Gets a list of projects that have changed in the current state of the repo
|
|
1467
|
+
* when compared to the specified branch, taking the shrinkwrap and settings in
|
|
1468
|
+
* the rush-project.json file into consideration.
|
|
1469
|
+
*/
|
|
1470
|
+
getProjectsImpactedByDiffAsync(options: IGetChangedProjectsOptions): Promise<Set<RushConfigurationProject>>;
|
|
1471
|
+
private _getChangedProjectsInternalAsync;
|
|
1465
1472
|
private _getData;
|
|
1466
1473
|
private _getIgnoreMatcherForProjectAsync;
|
|
1467
1474
|
private _getRepoDeps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.57.0-dev.
|
|
3
|
+
"version": "5.57.0-dev.3",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"tapable": "2.2.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@microsoft/rush-lib": "5.57.0-dev.
|
|
20
|
+
"@microsoft/rush-lib": "5.57.0-dev.3",
|
|
21
21
|
"@rushstack/eslint-config": "2.4.5",
|
|
22
22
|
"@rushstack/heft": "0.42.3",
|
|
23
|
-
"@rushstack/heft-node-rig": "1.2.
|
|
23
|
+
"@rushstack/heft-node-rig": "1.2.32",
|
|
24
24
|
"@types/heft-jest": "1.0.1",
|
|
25
25
|
"@types/node": "12.20.24",
|
|
26
26
|
"@types/semver": "7.3.5"
|