@rushstack/rush-sdk 5.89.1 → 5.90.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 +15 -4
- package/package.json +8 -8
package/dist/rush-lib.d.ts
CHANGED
|
@@ -1224,14 +1224,14 @@ export declare interface IPhase {
|
|
|
1224
1224
|
*/
|
|
1225
1225
|
name: string;
|
|
1226
1226
|
/**
|
|
1227
|
-
* If set to
|
|
1227
|
+
* If set to `true,` this this phase was generated from a bulk command, and
|
|
1228
1228
|
* was not explicitly defined in the command-line.json file.
|
|
1229
1229
|
*/
|
|
1230
1230
|
isSynthetic: boolean;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* This property is used in the name of the filename for the logs generated by this
|
|
1233
1233
|
* phase. This is a filesystem-safe version of the phase name. For example,
|
|
1234
|
-
* a phase with name
|
|
1234
|
+
* a phase with name `_phase:compile` has a `logFilenameIdentifier` of `_phase_compile`.
|
|
1235
1235
|
*/
|
|
1236
1236
|
logFilenameIdentifier: string;
|
|
1237
1237
|
/**
|
|
@@ -1246,13 +1246,24 @@ export declare interface IPhase {
|
|
|
1246
1246
|
upstream: Set<IPhase>;
|
|
1247
1247
|
};
|
|
1248
1248
|
/**
|
|
1249
|
-
* Normally Rush requires that each project's package.json has a
|
|
1249
|
+
* Normally Rush requires that each project's package.json has a `"scripts"` entry matching the phase name.
|
|
1250
|
+
* To disable this check, set `ignoreMissingScript` to true.
|
|
1250
1251
|
*/
|
|
1251
1252
|
ignoreMissingScript: boolean;
|
|
1252
1253
|
/**
|
|
1253
|
-
* By default, Rush returns a nonzero exit code if errors or warnings occur during a command. If this option is
|
|
1254
|
+
* By default, Rush returns a nonzero exit code if errors or warnings occur during a command. If this option is
|
|
1255
|
+
* set to `true`, Rush will return a zero exit code if warnings occur during the execution of this phase.
|
|
1254
1256
|
*/
|
|
1255
1257
|
allowWarningsOnSuccess: boolean;
|
|
1258
|
+
/**
|
|
1259
|
+
* (Optional) If the `shellCommand` field is set for a bulk command, Rush will invoke it for each
|
|
1260
|
+
* selected project; otherwise, Rush will invoke the package.json `"scripts"` entry matching Rush command/phase name.
|
|
1261
|
+
*
|
|
1262
|
+
* This string is the path to a script that will be invoked using the OS shell. The working directory will be
|
|
1263
|
+
* the folder that contains rush.json. If custom parameters are associated with this command, their
|
|
1264
|
+
* values will be appended to the end of this string.
|
|
1265
|
+
*/
|
|
1266
|
+
shellCommand?: string;
|
|
1256
1267
|
}
|
|
1257
1268
|
|
|
1258
1269
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.90.0",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,21 +12,21 @@
|
|
|
12
12
|
"typings": "dist/rush-lib.d.ts",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@rushstack/node-core-library": "3.53.3",
|
|
16
15
|
"@types/node-fetch": "1.6.9",
|
|
17
|
-
"tapable": "2.2.1"
|
|
16
|
+
"tapable": "2.2.1",
|
|
17
|
+
"@rushstack/node-core-library": "3.53.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@
|
|
20
|
+
"@types/heft-jest": "1.0.1",
|
|
21
|
+
"@types/semver": "7.3.5",
|
|
22
|
+
"@types/webpack-env": "1.13.0",
|
|
23
|
+
"@microsoft/rush-lib": "5.90.0",
|
|
21
24
|
"@rushstack/eslint-config": "3.1.1",
|
|
22
25
|
"@rushstack/heft": "0.49.3",
|
|
23
26
|
"@rushstack/heft-node-rig": "1.11.14",
|
|
24
27
|
"@rushstack/stream-collator": "4.0.222",
|
|
25
28
|
"@rushstack/ts-command-line": "4.13.1",
|
|
26
|
-
"@rushstack/terminal": "0.3.91"
|
|
27
|
-
"@types/heft-jest": "1.0.1",
|
|
28
|
-
"@types/semver": "7.3.5",
|
|
29
|
-
"@types/webpack-env": "1.13.0"
|
|
29
|
+
"@rushstack/terminal": "0.3.91"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "heft build --clean",
|