@rushstack/rush-sdk 5.89.0 → 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 +6 -2
- package/package.json +6 -6
package/dist/rush-lib.d.ts
CHANGED
|
@@ -2041,7 +2041,10 @@ export declare class PackageJsonEditor {
|
|
|
2041
2041
|
private _modified;
|
|
2042
2042
|
private _sourceData;
|
|
2043
2043
|
readonly filePath: string;
|
|
2044
|
-
|
|
2044
|
+
/**
|
|
2045
|
+
* @internal
|
|
2046
|
+
*/
|
|
2047
|
+
protected constructor(filepath: string, data: IPackageJson);
|
|
2045
2048
|
static load(filePath: string): PackageJsonEditor;
|
|
2046
2049
|
static fromObject(object: IPackageJson, filename: string): PackageJsonEditor;
|
|
2047
2050
|
get name(): string;
|
|
@@ -2961,6 +2964,7 @@ export declare class RushConfigurationProject {
|
|
|
2961
2964
|
private _versionPolicy;
|
|
2962
2965
|
private _dependencyProjects;
|
|
2963
2966
|
private _consumingProjects;
|
|
2967
|
+
private _packageJson;
|
|
2964
2968
|
/**
|
|
2965
2969
|
* The name of the NPM package. An error is reported if this name is not
|
|
2966
2970
|
* identical to packageJson.name.
|
|
@@ -3012,7 +3016,7 @@ export declare class RushConfigurationProject {
|
|
|
3012
3016
|
/**
|
|
3013
3017
|
* The parsed NPM "package.json" file from projectFolder.
|
|
3014
3018
|
*/
|
|
3015
|
-
|
|
3019
|
+
get packageJson(): IPackageJson;
|
|
3016
3020
|
/**
|
|
3017
3021
|
* A useful wrapper around the package.json file for making modifications
|
|
3018
3022
|
* @beta
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.89.
|
|
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.89.
|
|
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"
|