@rushstack/rush-sdk 5.99.0 → 5.100.0-pr4132.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
CHANGED
|
@@ -185,7 +185,6 @@ export declare enum BumpType {
|
|
|
185
185
|
'none' = 0,
|
|
186
186
|
'prerelease' = 1,
|
|
187
187
|
'patch' = 2,
|
|
188
|
-
'preminor' = 3,
|
|
189
188
|
'minor' = 4,
|
|
190
189
|
'major' = 5
|
|
191
190
|
}
|
|
@@ -1712,7 +1711,7 @@ export declare interface ITryFindRushJsonLocationOptions {
|
|
|
1712
1711
|
*/
|
|
1713
1712
|
showVerbose?: boolean;
|
|
1714
1713
|
/**
|
|
1715
|
-
* The folder path where the search will start. Defaults
|
|
1714
|
+
* The folder path where the search will start. Defaults to the current working directory.
|
|
1716
1715
|
*/
|
|
1717
1716
|
startingFolder?: string;
|
|
1718
1717
|
}
|
|
@@ -127,7 +127,7 @@ export interface ITryFindRushJsonLocationOptions {
|
|
|
127
127
|
*/
|
|
128
128
|
showVerbose?: boolean;
|
|
129
129
|
/**
|
|
130
|
-
* The folder path where the search will start. Defaults
|
|
130
|
+
* The folder path where the search will start. Defaults to the current working directory.
|
|
131
131
|
*/
|
|
132
132
|
startingFolder?: string;
|
|
133
133
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Determines if two objects are deeply equal.
|
|
3
|
+
*/
|
|
4
|
+
export declare function objectsAreDeepEqual<TObject>(a: TObject, b: TObject): boolean;
|
|
5
|
+
export declare function cloneDeep<TObject>(obj: TObject): TObject;
|
|
6
|
+
export declare function merge<TBase extends object, TOther>(base: TBase, other: TOther): (TBase & TOther) | TOther;
|
|
7
|
+
//# sourceMappingURL=objectUtilities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../../lib-shim/index")._rushSdk_loadInternalModule("utilities/objectUtilities");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.100.0-pr4132.1",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,18 +14,18 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@types/node-fetch": "2.6.2",
|
|
16
16
|
"tapable": "2.2.1",
|
|
17
|
-
"@rushstack/node-core-library": "3.59.
|
|
17
|
+
"@rushstack/node-core-library": "3.59.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/semver": "7.3.5",
|
|
21
21
|
"@types/webpack-env": "1.18.0",
|
|
22
|
-
"@microsoft/rush-lib": "5.
|
|
23
|
-
"@rushstack/eslint-config": "3.3.
|
|
24
|
-
"@rushstack/heft": "0.
|
|
25
|
-
"@rushstack/heft-node-rig": "2.
|
|
26
|
-
"@rushstack/stream-collator": "4.0.
|
|
27
|
-
"@rushstack/ts-command-line": "4.
|
|
28
|
-
"@rushstack/terminal": "0.5.
|
|
22
|
+
"@microsoft/rush-lib": "5.100.0-pr4132.1",
|
|
23
|
+
"@rushstack/eslint-config": "3.3.1",
|
|
24
|
+
"@rushstack/heft": "0.52.1",
|
|
25
|
+
"@rushstack/heft-node-rig": "2.2.1",
|
|
26
|
+
"@rushstack/stream-collator": "4.0.241",
|
|
27
|
+
"@rushstack/ts-command-line": "4.14.0",
|
|
28
|
+
"@rushstack/terminal": "0.5.16"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "heft build --clean",
|