@rushstack/rush-sdk 5.119.0 → 5.120.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.
@@ -3872,7 +3872,7 @@ export declare class RushConfiguration {
3872
3872
  *
3873
3873
  * @returns A map of dependency name --\> version specifier for implicitly preferred versions.
3874
3874
  */
3875
- getImplicitlyPreferredVersions(): Map<string, string>;
3875
+ getImplicitlyPreferredVersions(subspace?: Subspace): Map<string, string>;
3876
3876
  /**
3877
3877
  * @deprecated Use {@link Subspace.getRepoStateFilePath} instead
3878
3878
  */
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.43.0"
8
+ "packageVersion": "7.43.1"
9
9
  }
10
10
  ]
11
11
  }
@@ -565,7 +565,7 @@ export declare class RushConfiguration {
565
565
  *
566
566
  * @returns A map of dependency name --\> version specifier for implicitly preferred versions.
567
567
  */
568
- getImplicitlyPreferredVersions(): Map<string, string>;
568
+ getImplicitlyPreferredVersions(subspace?: Subspace): Map<string, string>;
569
569
  /**
570
570
  * @deprecated Use {@link Subspace.getRepoStateFilePath} instead
571
571
  */
@@ -1,5 +1,6 @@
1
1
  import type { CommonVersionsConfiguration } from '../api/CommonVersionsConfiguration';
2
2
  import type { RushConfiguration } from '../api/RushConfiguration';
3
+ import type { Subspace } from '../api/Subspace';
3
4
  export interface IDependencyAnalysis {
4
5
  /**
5
6
  * The common versions configuration from the repo's rush configuration.
@@ -22,7 +23,7 @@ export declare class DependencyAnalyzer {
22
23
  private _analysis;
23
24
  private constructor();
24
25
  static forRushConfiguration(rushConfiguration: RushConfiguration): DependencyAnalyzer;
25
- getAnalysis(): IDependencyAnalysis;
26
+ getAnalysis(subspace?: Subspace): IDependencyAnalysis;
26
27
  /**
27
28
  * Generates the {@link IDependencyAnalysis}.
28
29
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.119.0",
3
+ "version": "5.120.1",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,17 +25,17 @@
25
25
  "dependencies": {
26
26
  "@types/node-fetch": "2.6.2",
27
27
  "tapable": "2.2.1",
28
- "@rushstack/node-core-library": "4.0.2",
29
- "@rushstack/terminal": "0.10.0"
28
+ "@rushstack/node-core-library": "4.1.0",
29
+ "@rushstack/terminal": "0.10.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/semver": "7.5.0",
33
33
  "@types/webpack-env": "1.18.0",
34
- "@microsoft/rush-lib": "5.119.0",
35
- "@rushstack/heft": "0.66.2",
34
+ "@microsoft/rush-lib": "5.120.1",
35
+ "@rushstack/stream-collator": "4.1.41",
36
+ "@rushstack/heft": "0.66.3",
36
37
  "local-node-rig": "1.0.0",
37
- "@rushstack/ts-command-line": "4.19.1",
38
- "@rushstack/stream-collator": "4.1.40"
38
+ "@rushstack/ts-command-line": "4.19.2"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "heft build --clean",