@rushstack/rush-sdk 5.70.0 → 5.75.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.
Files changed (2) hide show
  1. package/dist/rush-lib.d.ts +11 -5
  2. package/package.json +9 -9
@@ -958,6 +958,10 @@ export declare interface ILaunchOptions {
958
958
  * @internal
959
959
  */
960
960
  builtInPluginConfigurations?: _IBuiltInPluginConfiguration[];
961
+ /**
962
+ * Used to specify terminal how to write a message
963
+ */
964
+ terminalProvider?: ITerminalProvider;
961
965
  }
962
966
 
963
967
  /**
@@ -1457,7 +1461,7 @@ export declare interface ITelemetryData {
1457
1461
  */
1458
1462
  readonly rushVersion?: string;
1459
1463
  readonly extraData?: {
1460
- [key: string]: string;
1464
+ [key: string]: string | number | boolean;
1461
1465
  };
1462
1466
  }
1463
1467
 
@@ -2138,8 +2142,6 @@ export declare class Rush {
2138
2142
  * Third-party tools should not use this API. Instead, they should execute the "rush" binary
2139
2143
  * and start a new Node.js process.
2140
2144
  *
2141
- * @param launcherVersion - The version of the `@microsoft/rush` wrapper used to call invoke the CLI.
2142
- *
2143
2145
  * @remarks
2144
2146
  * Earlier versions of the rush frontend used a different API contract. In the old contract,
2145
2147
  * the second argument was the `isManaged` value of the {@link ILaunchOptions} object.
@@ -2151,10 +2153,14 @@ export declare class Rush {
2151
2153
  * This API is used by the `@microsoft/rush` front end to launch the "rushx" command-line.
2152
2154
  * Third-party tools should not use this API. Instead, they should execute the "rushx" binary
2153
2155
  * and start a new Node.js process.
2154
- *
2155
- * @param launcherVersion - The version of the `@microsoft/rush` wrapper used to call invoke the CLI.
2156
2156
  */
2157
2157
  static launchRushX(launcherVersion: string, options: ILaunchOptions): void;
2158
+ /**
2159
+ * This API is used by the `@microsoft/rush` front end to launch the "rush-pnpm" command-line.
2160
+ * Third-party tools should not use this API. Instead, they should execute the "rush-pnpm" binary
2161
+ * and start a new Node.js process.
2162
+ */
2163
+ static launchRushPnpm(launcherVersion: string, options: ILaunchOptions): void;
2158
2164
  /**
2159
2165
  * The currently executing version of the "rush-lib" library.
2160
2166
  * This is the same as the Rush tool version for that release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.70.0",
3
+ "version": "5.75.0",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,18 +12,18 @@
12
12
  "typings": "dist/rush-lib.d.ts",
13
13
  "license": "MIT",
14
14
  "dependencies": {
15
- "@rushstack/node-core-library": "3.45.5",
15
+ "@rushstack/node-core-library": "3.48.0",
16
16
  "@types/node-fetch": "1.6.9",
17
17
  "tapable": "2.2.1"
18
18
  },
19
19
  "devDependencies": {
20
- "@microsoft/rush-lib": "5.70.0",
21
- "@rushstack/eslint-config": "2.6.0",
22
- "@rushstack/heft": "0.45.2",
23
- "@rushstack/heft-node-rig": "1.9.3",
24
- "@rushstack/stream-collator": "4.0.172",
25
- "@rushstack/ts-command-line": "4.11.0",
26
- "@rushstack/terminal": "0.3.41",
20
+ "@microsoft/rush-lib": "5.75.0",
21
+ "@rushstack/eslint-config": "2.6.2",
22
+ "@rushstack/heft": "0.45.14",
23
+ "@rushstack/heft-node-rig": "1.9.15",
24
+ "@rushstack/stream-collator": "4.0.184",
25
+ "@rushstack/ts-command-line": "4.12.1",
26
+ "@rushstack/terminal": "0.3.53",
27
27
  "@types/heft-jest": "1.0.1",
28
28
  "@types/semver": "7.3.5",
29
29
  "@types/webpack-env": "1.13.0"