@rushstack/rush-sdk 5.61.1 → 5.62.0-pr3059
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 +3 -3
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
|
|
|
@@ -1151,7 +1151,7 @@ export declare class LockStepVersionPolicy extends VersionPolicy {
|
|
|
1151
1151
|
/**
|
|
1152
1152
|
* The type of bump for next bump.
|
|
1153
1153
|
*/
|
|
1154
|
-
get nextBump(): BumpType;
|
|
1154
|
+
get nextBump(): BumpType | undefined;
|
|
1155
1155
|
/**
|
|
1156
1156
|
* The main project for the version policy.
|
|
1157
1157
|
*
|
|
@@ -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.
|
|
3
|
+
"version": "5.62.0-pr3059",
|
|
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.
|
|
20
|
+
"@microsoft/rush-lib": "5.62.0-pr3059",
|
|
21
21
|
"@rushstack/eslint-config": "2.5.1",
|
|
22
22
|
"@rushstack/heft": "0.44.2",
|
|
23
|
-
"@rushstack/heft-node-rig": "1.7.
|
|
23
|
+
"@rushstack/heft-node-rig": "1.7.1",
|
|
24
24
|
"@types/heft-jest": "1.0.1",
|
|
25
25
|
"@types/node": "12.20.24",
|
|
26
26
|
"@types/semver": "7.3.5"
|