@rushstack/rush-sdk 5.88.2 → 5.89.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 +7 -3
- package/package.json +2 -2
package/dist/rush-lib.d.ts
CHANGED
|
@@ -1340,9 +1340,13 @@ declare interface IPnpmPeerDependencyRules {
|
|
|
1340
1340
|
allowedVersions?: Record<string, string>;
|
|
1341
1341
|
}
|
|
1342
1342
|
|
|
1343
|
+
/**
|
|
1344
|
+
* @internal
|
|
1345
|
+
*/
|
|
1343
1346
|
declare interface IRawRepoState {
|
|
1344
1347
|
projectState: Map<RushConfigurationProject, Map<string, string>> | undefined;
|
|
1345
1348
|
rootDir: string;
|
|
1349
|
+
rawHashes: Map<string, string>;
|
|
1346
1350
|
}
|
|
1347
1351
|
|
|
1348
1352
|
/**
|
|
@@ -2347,7 +2351,7 @@ export declare class ProjectChangeAnalyzer {
|
|
|
2347
2351
|
/**
|
|
2348
2352
|
* @internal
|
|
2349
2353
|
*/
|
|
2350
|
-
|
|
2354
|
+
_ensureInitializedAsync(terminal: ITerminal): Promise<IRawRepoState | undefined>;
|
|
2351
2355
|
/**
|
|
2352
2356
|
* The project state hash is calculated in the following way:
|
|
2353
2357
|
* - Project dependencies are collected (see ProjectChangeAnalyzer.getPackageDeps)
|
|
@@ -2368,9 +2372,9 @@ export declare class ProjectChangeAnalyzer {
|
|
|
2368
2372
|
* the rush-project.json file into consideration.
|
|
2369
2373
|
*/
|
|
2370
2374
|
getChangedProjectsAsync(options: IGetChangedProjectsOptions): Promise<Set<RushConfigurationProject>>;
|
|
2371
|
-
private
|
|
2375
|
+
private _getDataAsync;
|
|
2372
2376
|
private _getIgnoreMatcherForProjectAsync;
|
|
2373
|
-
private
|
|
2377
|
+
private _getRepoDepsAsync;
|
|
2374
2378
|
}
|
|
2375
2379
|
|
|
2376
2380
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.89.0",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"tapable": "2.2.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@microsoft/rush-lib": "5.
|
|
20
|
+
"@microsoft/rush-lib": "5.89.0",
|
|
21
21
|
"@rushstack/eslint-config": "3.1.1",
|
|
22
22
|
"@rushstack/heft": "0.49.1",
|
|
23
23
|
"@rushstack/heft-node-rig": "1.11.12",
|