@rushstack/rush-sdk 5.124.0 → 5.124.2
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
CHANGED
|
@@ -911,7 +911,7 @@ export declare class FileSystemBuildCacheProvider {
|
|
|
911
911
|
* A base class for flag file.
|
|
912
912
|
* @internal
|
|
913
913
|
*/
|
|
914
|
-
export declare class _FlagFile
|
|
914
|
+
export declare class _FlagFile {
|
|
915
915
|
/**
|
|
916
916
|
* Flag file path
|
|
917
917
|
*/
|
|
@@ -919,13 +919,13 @@ export declare class _FlagFile<T extends object = JsonObject> {
|
|
|
919
919
|
/**
|
|
920
920
|
* Content of the flag
|
|
921
921
|
*/
|
|
922
|
-
|
|
922
|
+
private _state;
|
|
923
923
|
/**
|
|
924
924
|
* Creates a new flag file
|
|
925
925
|
* @param folderPath - the folder that this flag is managing
|
|
926
926
|
* @param state - optional, the state that should be managed or compared
|
|
927
927
|
*/
|
|
928
|
-
constructor(folderPath: string, flagName: string, initialState?:
|
|
928
|
+
constructor(folderPath: string, flagName: string, initialState?: JsonObject);
|
|
929
929
|
/**
|
|
930
930
|
* Returns true if the file exists and the contents match the current state.
|
|
931
931
|
*/
|
package/dist/tsdoc-metadata.json
CHANGED
package/lib/api/FlagFile.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { type JsonObject } from '@rushstack/node-core-library';
|
|
|
3
3
|
* A base class for flag file.
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
|
-
export declare class FlagFile
|
|
6
|
+
export declare class FlagFile {
|
|
7
7
|
/**
|
|
8
8
|
* Flag file path
|
|
9
9
|
*/
|
|
@@ -11,13 +11,13 @@ export declare class FlagFile<T extends object = JsonObject> {
|
|
|
11
11
|
/**
|
|
12
12
|
* Content of the flag
|
|
13
13
|
*/
|
|
14
|
-
|
|
14
|
+
private _state;
|
|
15
15
|
/**
|
|
16
16
|
* Creates a new flag file
|
|
17
17
|
* @param folderPath - the folder that this flag is managing
|
|
18
18
|
* @param state - optional, the state that should be managed or compared
|
|
19
19
|
*/
|
|
20
|
-
constructor(folderPath: string, flagName: string, initialState?:
|
|
20
|
+
constructor(folderPath: string, flagName: string, initialState?: JsonObject);
|
|
21
21
|
/**
|
|
22
22
|
* Returns true if the file exists and the contents match the current state.
|
|
23
23
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class DeployAction extends BaseRushAction {
|
|
|
9
9
|
private readonly _createArchivePath;
|
|
10
10
|
private readonly _createArchiveOnly;
|
|
11
11
|
constructor(parser: RushCommandLineParser);
|
|
12
|
-
private _getDependencyProjects;
|
|
13
12
|
protected runAsync(): Promise<void>;
|
|
14
13
|
}
|
|
15
14
|
//# sourceMappingURL=DeployAction.d.ts.map
|
|
@@ -71,7 +71,6 @@ export declare class OperationExecutionRecord implements IOperationRunnerContext
|
|
|
71
71
|
readonly stopwatch: Stopwatch;
|
|
72
72
|
readonly stdioSummarizer: StdioSummarizer;
|
|
73
73
|
readonly runner: IOperationRunner;
|
|
74
|
-
readonly weight: number;
|
|
75
74
|
readonly associatedPhase: IPhase | undefined;
|
|
76
75
|
readonly associatedProject: RushConfigurationProject | undefined;
|
|
77
76
|
readonly _operationMetadataManager: OperationMetadataManager | undefined;
|
|
@@ -80,6 +79,7 @@ export declare class OperationExecutionRecord implements IOperationRunnerContext
|
|
|
80
79
|
private _status;
|
|
81
80
|
constructor(operation: Operation, context: IOperationExecutionRecordContext);
|
|
82
81
|
get name(): string;
|
|
82
|
+
get weight(): number;
|
|
83
83
|
get debugMode(): boolean;
|
|
84
84
|
get quietMode(): boolean;
|
|
85
85
|
get collatedWriter(): CollatedWriter;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.124.
|
|
3
|
+
"version": "5.124.2",
|
|
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.2.
|
|
29
|
-
"@rushstack/terminal": "0.10.
|
|
28
|
+
"@rushstack/node-core-library": "4.2.1",
|
|
29
|
+
"@rushstack/terminal": "0.10.3"
|
|
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.124.
|
|
34
|
+
"@microsoft/rush-lib": "5.124.2",
|
|
35
|
+
"@rushstack/heft": "0.66.6",
|
|
35
36
|
"local-node-rig": "1.0.0",
|
|
36
|
-
"@rushstack/ts-command-line": "4.19.
|
|
37
|
-
"@rushstack/stream-collator": "4.1.
|
|
38
|
-
"@rushstack/heft": "0.66.5"
|
|
37
|
+
"@rushstack/ts-command-line": "4.19.5",
|
|
38
|
+
"@rushstack/stream-collator": "4.1.44"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "heft build --clean",
|