@rushstack/rush-sdk 5.113.0 → 5.113.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
|
@@ -3401,7 +3401,7 @@ export declare class RushConfiguration {
|
|
|
3401
3401
|
*/
|
|
3402
3402
|
readonly subspacesConfiguration: SubspacesConfiguration | undefined;
|
|
3403
3403
|
/**
|
|
3404
|
-
* Returns true if subspaces.json is present with "
|
|
3404
|
+
* Returns true if subspaces.json is present with "subspacesEnabled=true".
|
|
3405
3405
|
*/
|
|
3406
3406
|
readonly subspacesFeatureEnabled: boolean;
|
|
3407
3407
|
/**
|
|
@@ -4513,14 +4513,15 @@ export declare class SubspacesConfiguration {
|
|
|
4513
4513
|
* The absolute path to the "subspaces.json" configuration file that was loaded to construct this object.
|
|
4514
4514
|
*/
|
|
4515
4515
|
readonly subspaceJsonFilePath: string;
|
|
4516
|
-
|
|
4517
|
-
* Determines if the subspace feature is enabled
|
|
4518
|
-
*/
|
|
4519
|
-
readonly enabled: boolean;
|
|
4516
|
+
readonly subspacesEnabled: boolean;
|
|
4520
4517
|
/**
|
|
4521
4518
|
* This determines if the subspaces feature supports adding configuration files under the project folder itself
|
|
4522
4519
|
*/
|
|
4523
4520
|
readonly splitWorkspaceCompatibility: boolean;
|
|
4521
|
+
/**
|
|
4522
|
+
* This determines if selectors are required when installing and building
|
|
4523
|
+
*/
|
|
4524
|
+
readonly preventSelectingAllSubspaces: boolean;
|
|
4524
4525
|
/**
|
|
4525
4526
|
* A set of the available subspaces
|
|
4526
4527
|
*/
|
|
@@ -253,7 +253,7 @@ export declare class RushConfiguration {
|
|
|
253
253
|
*/
|
|
254
254
|
readonly subspacesConfiguration: SubspacesConfiguration | undefined;
|
|
255
255
|
/**
|
|
256
|
-
* Returns true if subspaces.json is present with "
|
|
256
|
+
* Returns true if subspaces.json is present with "subspacesEnabled=true".
|
|
257
257
|
*/
|
|
258
258
|
readonly subspacesFeatureEnabled: boolean;
|
|
259
259
|
/**
|
|
@@ -18,14 +18,15 @@ export declare class SubspacesConfiguration {
|
|
|
18
18
|
* The absolute path to the "subspaces.json" configuration file that was loaded to construct this object.
|
|
19
19
|
*/
|
|
20
20
|
readonly subspaceJsonFilePath: string;
|
|
21
|
-
|
|
22
|
-
* Determines if the subspace feature is enabled
|
|
23
|
-
*/
|
|
24
|
-
readonly enabled: boolean;
|
|
21
|
+
readonly subspacesEnabled: boolean;
|
|
25
22
|
/**
|
|
26
23
|
* This determines if the subspaces feature supports adding configuration files under the project folder itself
|
|
27
24
|
*/
|
|
28
25
|
readonly splitWorkspaceCompatibility: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* This determines if selectors are required when installing and building
|
|
28
|
+
*/
|
|
29
|
+
readonly preventSelectingAllSubspaces: boolean;
|
|
29
30
|
/**
|
|
30
31
|
* A set of the available subspaces
|
|
31
32
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.113.
|
|
3
|
+
"version": "5.113.2",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/semver": "7.5.0",
|
|
32
32
|
"@types/webpack-env": "1.18.0",
|
|
33
|
-
"@microsoft/rush-lib": "5.113.0",
|
|
34
33
|
"local-node-rig": "1.0.0",
|
|
34
|
+
"@rushstack/stream-collator": "4.1.21",
|
|
35
|
+
"@rushstack/heft": "0.64.3",
|
|
35
36
|
"@rushstack/ts-command-line": "4.17.1",
|
|
36
37
|
"@rushstack/terminal": "0.7.20",
|
|
37
|
-
"@
|
|
38
|
-
"@rushstack/heft": "0.64.3"
|
|
38
|
+
"@microsoft/rush-lib": "5.113.2"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "heft build --clean",
|