@rushstack/rush-sdk 5.137.0 → 5.138.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.
@@ -8,6 +8,7 @@ export interface IOperationRunnerOptions {
8
8
  rushProject: RushConfigurationProject;
9
9
  rushConfiguration: RushConfiguration;
10
10
  commandToRun: string;
11
+ commandForHash: string;
11
12
  displayName: string;
12
13
  phase: IPhase;
13
14
  environment?: IEnvironment;
@@ -24,6 +25,7 @@ export declare class ShellOperationRunner implements IOperationRunner {
24
25
  readonly cacheable: boolean;
25
26
  readonly warningsAreAllowed: boolean;
26
27
  private readonly _commandToRun;
28
+ private readonly _commandForHash;
27
29
  private readonly _rushProject;
28
30
  private readonly _rushConfiguration;
29
31
  private readonly _environment?;
@@ -16,8 +16,9 @@ export declare function initializeShellOperationRunner(options: {
16
16
  displayName: string;
17
17
  rushConfiguration: RushConfiguration;
18
18
  commandToRun: string | undefined;
19
+ commandForHash?: string;
20
+ customParameterValues: ReadonlyArray<string>;
19
21
  }): IOperationRunner;
20
- export declare function getScriptToRun(rushProject: RushConfigurationProject, commandToRun: string, shellCommand: string | undefined): string | undefined;
21
22
  /**
22
23
  * Memoizer for custom parameter values by phase
23
24
  * @returns A function that returns the custom parameter values for a given phase
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.137.0",
3
+ "version": "5.138.0",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -44,13 +44,13 @@
44
44
  "@types/semver": "7.5.0",
45
45
  "@types/webpack-env": "1.18.0",
46
46
  "webpack": "~5.95.0",
47
+ "@microsoft/rush-lib": "5.138.0",
47
48
  "@rushstack/heft": "0.68.2",
48
- "@microsoft/rush-lib": "5.137.0",
49
- "@rushstack/stream-collator": "4.1.70",
50
- "local-node-rig": "1.0.0",
51
49
  "@rushstack/heft-webpack5-plugin": "0.11.0",
50
+ "local-node-rig": "1.0.0",
52
51
  "@rushstack/ts-command-line": "4.22.8",
53
- "@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.69"
52
+ "@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.69",
53
+ "@rushstack/stream-collator": "4.1.70"
54
54
  },
55
55
  "scripts": {
56
56
  "build": "heft build --clean",