@rushstack/rush-sdk 5.59.2 → 5.59.3-pr3059.0.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 +3 -3
- package/package.json +2 -2
package/dist/rush-lib.d.ts
CHANGED
|
@@ -791,7 +791,7 @@ declare interface ILocalBuildCacheJson extends IBaseBuildCacheJson {
|
|
|
791
791
|
|
|
792
792
|
declare interface ILockStepVersionJson extends IVersionPolicyJson {
|
|
793
793
|
version: string;
|
|
794
|
-
nextBump
|
|
794
|
+
nextBump?: string;
|
|
795
795
|
mainProject?: string;
|
|
796
796
|
}
|
|
797
797
|
|
|
@@ -1133,7 +1133,7 @@ export declare class LockStepVersionPolicy extends VersionPolicy {
|
|
|
1133
1133
|
/**
|
|
1134
1134
|
* The type of bump for next bump.
|
|
1135
1135
|
*/
|
|
1136
|
-
get nextBump(): BumpType;
|
|
1136
|
+
get nextBump(): BumpType | undefined;
|
|
1137
1137
|
/**
|
|
1138
1138
|
* The main project for the version policy.
|
|
1139
1139
|
*
|
|
@@ -2715,7 +2715,7 @@ export declare class VersionPolicyConfiguration {
|
|
|
2715
2715
|
* @param versionPolicyName - version policy name
|
|
2716
2716
|
* @param newVersion - new version
|
|
2717
2717
|
*/
|
|
2718
|
-
update(versionPolicyName: string, newVersion: string): void;
|
|
2718
|
+
update(versionPolicyName: string, newVersion: string, shouldCommit?: boolean): void;
|
|
2719
2719
|
private _loadFile;
|
|
2720
2720
|
private _saveFile;
|
|
2721
2721
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.59.
|
|
3
|
+
"version": "5.59.3-pr3059.0.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.59.
|
|
20
|
+
"@microsoft/rush-lib": "5.59.3-pr3059.0.0",
|
|
21
21
|
"@rushstack/eslint-config": "2.5.1",
|
|
22
22
|
"@rushstack/heft": "0.44.2",
|
|
23
23
|
"@rushstack/heft-node-rig": "1.5.2",
|