@rushstack/rush-sdk 5.146.0 → 5.147.1
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
|
@@ -1471,6 +1471,11 @@ export declare interface IExperimentsJson {
|
|
|
1471
1471
|
* This is useful when you want to speed up operations that can't (or shouldn't) be cached.
|
|
1472
1472
|
*/
|
|
1473
1473
|
allowCobuildWithoutCache?: boolean;
|
|
1474
|
+
/**
|
|
1475
|
+
* By default, rush perform a full scan of the entire repository. For example, Rush runs `git status` to check for local file changes.
|
|
1476
|
+
* When this toggle is enabled, Rush will only scan specific paths, significantly speeding up Git operations.
|
|
1477
|
+
*/
|
|
1478
|
+
enableSubpathScan?: boolean;
|
|
1474
1479
|
}
|
|
1475
1480
|
|
|
1476
1481
|
/**
|
|
@@ -3382,7 +3387,7 @@ export declare class ProjectChangeAnalyzer {
|
|
|
3382
3387
|
* build operations and use by the build cache.
|
|
3383
3388
|
* @internal
|
|
3384
3389
|
*/
|
|
3385
|
-
_tryGetSnapshotProviderAsync(projectConfigurations: ReadonlyMap<RushConfigurationProject, RushProjectConfiguration>, terminal: ITerminal): Promise<GetInputsSnapshotAsyncFn | undefined>;
|
|
3390
|
+
_tryGetSnapshotProviderAsync(projectConfigurations: ReadonlyMap<RushConfigurationProject, RushProjectConfiguration>, terminal: ITerminal, projectSelection?: ReadonlySet<RushConfigurationProject>): Promise<GetInputsSnapshotAsyncFn | undefined>;
|
|
3386
3391
|
/**
|
|
3387
3392
|
* @internal
|
|
3388
3393
|
*/
|
package/dist/tsdoc-metadata.json
CHANGED
|
@@ -89,6 +89,11 @@ export interface IExperimentsJson {
|
|
|
89
89
|
* This is useful when you want to speed up operations that can't (or shouldn't) be cached.
|
|
90
90
|
*/
|
|
91
91
|
allowCobuildWithoutCache?: boolean;
|
|
92
|
+
/**
|
|
93
|
+
* By default, rush perform a full scan of the entire repository. For example, Rush runs `git status` to check for local file changes.
|
|
94
|
+
* When this toggle is enabled, Rush will only scan specific paths, significantly speeding up Git operations.
|
|
95
|
+
*/
|
|
96
|
+
enableSubpathScan?: boolean;
|
|
92
97
|
}
|
|
93
98
|
/**
|
|
94
99
|
* Use this class to load the "common/config/rush/experiments.json" config file.
|
|
@@ -51,7 +51,7 @@ export declare class ProjectChangeAnalyzer {
|
|
|
51
51
|
* build operations and use by the build cache.
|
|
52
52
|
* @internal
|
|
53
53
|
*/
|
|
54
|
-
_tryGetSnapshotProviderAsync(projectConfigurations: ReadonlyMap<RushConfigurationProject, RushProjectConfiguration>, terminal: ITerminal): Promise<GetInputsSnapshotAsyncFn | undefined>;
|
|
54
|
+
_tryGetSnapshotProviderAsync(projectConfigurations: ReadonlyMap<RushConfigurationProject, RushProjectConfiguration>, terminal: ITerminal, projectSelection?: ReadonlySet<RushConfigurationProject>): Promise<GetInputsSnapshotAsyncFn | undefined>;
|
|
55
55
|
/**
|
|
56
56
|
* @internal
|
|
57
57
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.147.1",
|
|
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/
|
|
39
|
-
"@rushstack/
|
|
40
|
-
"@rushstack/
|
|
41
|
-
"@rushstack/
|
|
38
|
+
"@rushstack/package-deps-hash": "4.3.1",
|
|
39
|
+
"@rushstack/lookup-by-path": "0.5.0",
|
|
40
|
+
"@rushstack/node-core-library": "5.10.1",
|
|
41
|
+
"@rushstack/terminal": "0.14.4"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
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.
|
|
48
|
-
"@rushstack/heft
|
|
47
|
+
"@microsoft/rush-lib": "5.147.1",
|
|
48
|
+
"@rushstack/heft": "0.68.11",
|
|
49
49
|
"local-node-rig": "1.0.0",
|
|
50
|
-
"@rushstack/heft": "0.
|
|
51
|
-
"@rushstack/stream-collator": "4.1.
|
|
52
|
-
"@rushstack/
|
|
53
|
-
"@rushstack/
|
|
50
|
+
"@rushstack/heft-webpack5-plugin": "0.11.9",
|
|
51
|
+
"@rushstack/stream-collator": "4.1.79",
|
|
52
|
+
"@rushstack/ts-command-line": "4.23.2",
|
|
53
|
+
"@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.78"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "heft build --clean",
|