@rushstack/rush-sdk 5.149.1 → 5.150.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.
- package/dist/rush-lib.d.ts +7 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/cli/scriptActions/PhasedScriptAction.d.ts +1 -0
- package/lib/logic/buildCache/FileSystemBuildCacheProvider.d.ts +1 -0
- package/lib/logic/buildCache/ICloudBuildCacheProvider.d.ts +1 -0
- package/lib/pluginFramework/PhasedCommandHooks.d.ts +7 -0
- package/lib/utilities/WebClient.d.ts +1 -0
- package/package.json +10 -10
package/dist/rush-lib.d.ts
CHANGED
|
@@ -1239,6 +1239,13 @@ export declare interface ICreateOperationsContext {
|
|
|
1239
1239
|
* The Rush configuration
|
|
1240
1240
|
*/
|
|
1241
1241
|
readonly rushConfiguration: RushConfiguration;
|
|
1242
|
+
/**
|
|
1243
|
+
* If true, Rush will automatically include the dependent phases for the specified set of phases.
|
|
1244
|
+
* @remarks
|
|
1245
|
+
* If the selection of projects was "unsafe" (i.e. missing some dependencies), this will add the
|
|
1246
|
+
* minimum number of phases required to make it safe.
|
|
1247
|
+
*/
|
|
1248
|
+
readonly includePhaseDeps: boolean;
|
|
1242
1249
|
/**
|
|
1243
1250
|
* Marks an operation's result as invalid, potentially triggering a new build. Only applicable in watch mode.
|
|
1244
1251
|
* @param operation - The operation to invalidate
|
package/dist/tsdoc-metadata.json
CHANGED
|
@@ -54,6 +54,7 @@ export declare class PhasedScriptAction extends BaseScriptAction<IPhasedCommandC
|
|
|
54
54
|
private readonly _variantParameter;
|
|
55
55
|
private readonly _noIPCParameter;
|
|
56
56
|
private readonly _nodeDiagnosticDirParameter;
|
|
57
|
+
private readonly _includePhaseDeps;
|
|
57
58
|
constructor(options: IPhasedScriptActionOptions);
|
|
58
59
|
runAsync(): Promise<void>;
|
|
59
60
|
private _runInitialPhasesAsync;
|
|
@@ -80,6 +80,13 @@ export interface ICreateOperationsContext {
|
|
|
80
80
|
* The Rush configuration
|
|
81
81
|
*/
|
|
82
82
|
readonly rushConfiguration: RushConfiguration;
|
|
83
|
+
/**
|
|
84
|
+
* If true, Rush will automatically include the dependent phases for the specified set of phases.
|
|
85
|
+
* @remarks
|
|
86
|
+
* If the selection of projects was "unsafe" (i.e. missing some dependencies), this will add the
|
|
87
|
+
* minimum number of phases required to make it safe.
|
|
88
|
+
*/
|
|
89
|
+
readonly includePhaseDeps: boolean;
|
|
83
90
|
/**
|
|
84
91
|
* Marks an operation's result as invalid, potentially triggering a new build. Only applicable in watch mode.
|
|
85
92
|
* @param operation - The operation to invalidate
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.150.0",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,22 +35,22 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@pnpm/lockfile.types": "~1.0.3",
|
|
37
37
|
"tapable": "2.2.1",
|
|
38
|
-
"@rushstack/lookup-by-path": "0.5.6",
|
|
39
|
-
"@rushstack/package-deps-hash": "4.3.7",
|
|
40
38
|
"@rushstack/node-core-library": "5.11.0",
|
|
39
|
+
"@rushstack/lookup-by-path": "0.5.9",
|
|
40
|
+
"@rushstack/package-deps-hash": "4.3.10",
|
|
41
41
|
"@rushstack/terminal": "0.15.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/semver": "7.5.0",
|
|
45
|
-
"@types/webpack-env": "1.18.
|
|
45
|
+
"@types/webpack-env": "1.18.8",
|
|
46
46
|
"webpack": "~5.95.0",
|
|
47
|
-
"@microsoft/rush-lib": "5.
|
|
48
|
-
"@rushstack/heft": "0.
|
|
47
|
+
"@microsoft/rush-lib": "5.150.0",
|
|
48
|
+
"@rushstack/heft": "0.69.1",
|
|
49
|
+
"@rushstack/stream-collator": "4.1.88",
|
|
49
50
|
"local-node-rig": "1.0.0",
|
|
50
|
-
"@rushstack/
|
|
51
|
-
"@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.
|
|
52
|
-
"@rushstack/ts-command-line": "4.23.5"
|
|
53
|
-
"@rushstack/heft-webpack5-plugin": "0.11.15"
|
|
51
|
+
"@rushstack/heft-webpack5-plugin": "0.11.18",
|
|
52
|
+
"@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.87",
|
|
53
|
+
"@rushstack/ts-command-line": "4.23.5"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "heft build --clean",
|