@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.
@@ -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 tot he current working directory.
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 tot he current working directory.
130
+ * The folder path where the search will start. Defaults to the current working directory.
131
131
  */
132
132
  startingFolder?: string;
133
133
  }
@@ -9,7 +9,6 @@ export declare enum BumpType {
9
9
  'none' = 0,
10
10
  'prerelease' = 1,
11
11
  'patch' = 2,
12
- 'preminor' = 3,
13
12
  'minor' = 4,
14
13
  'major' = 5
15
14
  }
@@ -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.99.0",
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.2"
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.99.0",
23
- "@rushstack/eslint-config": "3.3.0",
24
- "@rushstack/heft": "0.51.0",
25
- "@rushstack/heft-node-rig": "2.0.0",
26
- "@rushstack/stream-collator": "4.0.237",
27
- "@rushstack/ts-command-line": "4.13.3",
28
- "@rushstack/terminal": "0.5.12"
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",