@rushstack/rush-sdk 5.110.2 → 5.112.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.
@@ -1302,6 +1302,11 @@ export declare interface IExperimentsJson {
1302
1302
  * This will not replay warnings from the cached build.
1303
1303
  */
1304
1304
  buildCacheWithAllowWarningsInSuccessfulBuild?: boolean;
1305
+ /**
1306
+ * If true, build skipping will respect the allowWarningsInSuccessfulBuild flag and skip builds with warnings.
1307
+ * This will not replay warnings from the skipped build.
1308
+ */
1309
+ buildSkipWithAllowWarningsInSuccessfulBuild?: boolean;
1305
1310
  /**
1306
1311
  * If true, the phased commands feature is enabled. To use this feature, create a "phased" command
1307
1312
  * in common/config/rush/command-line.json.
@@ -36,6 +36,11 @@ export interface IExperimentsJson {
36
36
  * This will not replay warnings from the cached build.
37
37
  */
38
38
  buildCacheWithAllowWarningsInSuccessfulBuild?: boolean;
39
+ /**
40
+ * If true, build skipping will respect the allowWarningsInSuccessfulBuild flag and skip builds with warnings.
41
+ * This will not replay warnings from the skipped build.
42
+ */
43
+ buildSkipWithAllowWarningsInSuccessfulBuild?: boolean;
39
44
  /**
40
45
  * If true, the phased commands feature is enabled. To use this feature, create a "phased" command
41
46
  * in common/config/rush/command-line.json.
@@ -10,6 +10,7 @@ export interface ILegacySkipPluginOptions {
10
10
  terminal: ITerminal;
11
11
  changedProjectsOnly: boolean;
12
12
  isIncrementalBuildAllowed: boolean;
13
+ allowWarningsInSuccessfulBuild?: boolean;
13
14
  }
14
15
  /**
15
16
  * Core phased command plugin that implements the legacy skip detection logic, used when build cache is disabled.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.110.2",
3
+ "version": "5.112.0",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,10 +30,10 @@
30
30
  "devDependencies": {
31
31
  "@types/semver": "7.5.0",
32
32
  "@types/webpack-env": "1.18.0",
33
- "@microsoft/rush-lib": "5.110.2",
34
- "@rushstack/heft": "0.63.2",
35
- "@rushstack/stream-collator": "4.1.13",
33
+ "@microsoft/rush-lib": "5.112.0",
36
34
  "local-node-rig": "1.0.0",
35
+ "@rushstack/stream-collator": "4.1.13",
36
+ "@rushstack/heft": "0.63.2",
37
37
  "@rushstack/ts-command-line": "4.17.1",
38
38
  "@rushstack/terminal": "0.7.12"
39
39
  },