@rushstack/rush-sdk 5.88.2 → 5.89.1
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 -5
- package/package.json +6 -6
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
|
/**
|
|
@@ -2037,7 +2041,10 @@ export declare class PackageJsonEditor {
|
|
|
2037
2041
|
private _modified;
|
|
2038
2042
|
private _sourceData;
|
|
2039
2043
|
readonly filePath: string;
|
|
2040
|
-
|
|
2044
|
+
/**
|
|
2045
|
+
* @internal
|
|
2046
|
+
*/
|
|
2047
|
+
protected constructor(filepath: string, data: IPackageJson);
|
|
2041
2048
|
static load(filePath: string): PackageJsonEditor;
|
|
2042
2049
|
static fromObject(object: IPackageJson, filename: string): PackageJsonEditor;
|
|
2043
2050
|
get name(): string;
|
|
@@ -2347,7 +2354,7 @@ export declare class ProjectChangeAnalyzer {
|
|
|
2347
2354
|
/**
|
|
2348
2355
|
* @internal
|
|
2349
2356
|
*/
|
|
2350
|
-
|
|
2357
|
+
_ensureInitializedAsync(terminal: ITerminal): Promise<IRawRepoState | undefined>;
|
|
2351
2358
|
/**
|
|
2352
2359
|
* The project state hash is calculated in the following way:
|
|
2353
2360
|
* - Project dependencies are collected (see ProjectChangeAnalyzer.getPackageDeps)
|
|
@@ -2368,9 +2375,9 @@ export declare class ProjectChangeAnalyzer {
|
|
|
2368
2375
|
* the rush-project.json file into consideration.
|
|
2369
2376
|
*/
|
|
2370
2377
|
getChangedProjectsAsync(options: IGetChangedProjectsOptions): Promise<Set<RushConfigurationProject>>;
|
|
2371
|
-
private
|
|
2378
|
+
private _getDataAsync;
|
|
2372
2379
|
private _getIgnoreMatcherForProjectAsync;
|
|
2373
|
-
private
|
|
2380
|
+
private _getRepoDepsAsync;
|
|
2374
2381
|
}
|
|
2375
2382
|
|
|
2376
2383
|
/**
|
|
@@ -2957,6 +2964,7 @@ export declare class RushConfigurationProject {
|
|
|
2957
2964
|
private _versionPolicy;
|
|
2958
2965
|
private _dependencyProjects;
|
|
2959
2966
|
private _consumingProjects;
|
|
2967
|
+
private _packageJson;
|
|
2960
2968
|
/**
|
|
2961
2969
|
* The name of the NPM package. An error is reported if this name is not
|
|
2962
2970
|
* identical to packageJson.name.
|
|
@@ -3008,7 +3016,7 @@ export declare class RushConfigurationProject {
|
|
|
3008
3016
|
/**
|
|
3009
3017
|
* The parsed NPM "package.json" file from projectFolder.
|
|
3010
3018
|
*/
|
|
3011
|
-
|
|
3019
|
+
get packageJson(): IPackageJson;
|
|
3012
3020
|
/**
|
|
3013
3021
|
* A useful wrapper around the package.json file for making modifications
|
|
3014
3022
|
* @beta
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.89.1",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"tapable": "2.2.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@microsoft/rush-lib": "5.
|
|
20
|
+
"@microsoft/rush-lib": "5.89.1",
|
|
21
21
|
"@rushstack/eslint-config": "3.1.1",
|
|
22
|
-
"@rushstack/heft": "0.49.
|
|
23
|
-
"@rushstack/heft-node-rig": "1.11.
|
|
24
|
-
"@rushstack/stream-collator": "4.0.
|
|
22
|
+
"@rushstack/heft": "0.49.3",
|
|
23
|
+
"@rushstack/heft-node-rig": "1.11.14",
|
|
24
|
+
"@rushstack/stream-collator": "4.0.222",
|
|
25
25
|
"@rushstack/ts-command-line": "4.13.1",
|
|
26
|
-
"@rushstack/terminal": "0.3.
|
|
26
|
+
"@rushstack/terminal": "0.3.91",
|
|
27
27
|
"@types/heft-jest": "1.0.1",
|
|
28
28
|
"@types/semver": "7.3.5",
|
|
29
29
|
"@types/webpack-env": "1.13.0"
|