@rushstack/rush-sdk 5.139.0 → 5.140.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
|
@@ -2125,6 +2125,10 @@ export declare interface _IPnpmOptionsJson extends IPackageManagerOptionsJsonBas
|
|
|
2125
2125
|
* {@inheritDoc PnpmOptionsConfiguration.globalNeverBuiltDependencies}
|
|
2126
2126
|
*/
|
|
2127
2127
|
globalNeverBuiltDependencies?: string[];
|
|
2128
|
+
/**
|
|
2129
|
+
* {@inheritDoc PnpmOptionsConfiguration.globalIgnoredOptionalDependencies}
|
|
2130
|
+
*/
|
|
2131
|
+
globalIgnoredOptionalDependencies?: string[];
|
|
2128
2132
|
/**
|
|
2129
2133
|
* {@inheritDoc PnpmOptionsConfiguration.globalAllowedDeprecatedVersions}
|
|
2130
2134
|
*/
|
|
@@ -3259,6 +3263,17 @@ export declare class PnpmOptionsConfiguration extends PackageManagerOptionsConfi
|
|
|
3259
3263
|
* PNPM documentation: https://pnpm.io/package_json#pnpmneverbuiltdependencies
|
|
3260
3264
|
*/
|
|
3261
3265
|
readonly globalNeverBuiltDependencies: string[] | undefined;
|
|
3266
|
+
/**
|
|
3267
|
+
* The ignoredOptionalDependencies setting allows you to exclude certain optional dependencies from being installed
|
|
3268
|
+
* during the Rush installation process. This can be useful when optional dependencies are not required or are
|
|
3269
|
+
* problematic in specific environments (e.g., dependencies with incompatible binaries or platform-specific requirements).
|
|
3270
|
+
* The listed dependencies will be treated as though they are missing, even if other packages specify them as optional
|
|
3271
|
+
* dependencies. The settings are copied into the pnpm.ignoredOptionalDependencies field of the common/temp/package.json
|
|
3272
|
+
* file that is generated by Rush during installation.
|
|
3273
|
+
*
|
|
3274
|
+
* PNPM documentation: https://pnpm.io/package_json#pnpmignoredoptionaldependencies
|
|
3275
|
+
*/
|
|
3276
|
+
readonly globalIgnoredOptionalDependencies: string[] | undefined;
|
|
3262
3277
|
/**
|
|
3263
3278
|
* The `globalAllowedDeprecatedVersions` setting suppresses installation warnings for package
|
|
3264
3279
|
* versions that the NPM registry reports as being deprecated. This is useful if the
|
|
@@ -93,6 +93,10 @@ export interface IPnpmOptionsJson extends IPackageManagerOptionsJsonBase {
|
|
|
93
93
|
* {@inheritDoc PnpmOptionsConfiguration.globalNeverBuiltDependencies}
|
|
94
94
|
*/
|
|
95
95
|
globalNeverBuiltDependencies?: string[];
|
|
96
|
+
/**
|
|
97
|
+
* {@inheritDoc PnpmOptionsConfiguration.globalIgnoredOptionalDependencies}
|
|
98
|
+
*/
|
|
99
|
+
globalIgnoredOptionalDependencies?: string[];
|
|
96
100
|
/**
|
|
97
101
|
* {@inheritDoc PnpmOptionsConfiguration.globalAllowedDeprecatedVersions}
|
|
98
102
|
*/
|
|
@@ -288,6 +292,17 @@ export declare class PnpmOptionsConfiguration extends PackageManagerOptionsConfi
|
|
|
288
292
|
* PNPM documentation: https://pnpm.io/package_json#pnpmneverbuiltdependencies
|
|
289
293
|
*/
|
|
290
294
|
readonly globalNeverBuiltDependencies: string[] | undefined;
|
|
295
|
+
/**
|
|
296
|
+
* The ignoredOptionalDependencies setting allows you to exclude certain optional dependencies from being installed
|
|
297
|
+
* during the Rush installation process. This can be useful when optional dependencies are not required or are
|
|
298
|
+
* problematic in specific environments (e.g., dependencies with incompatible binaries or platform-specific requirements).
|
|
299
|
+
* The listed dependencies will be treated as though they are missing, even if other packages specify them as optional
|
|
300
|
+
* dependencies. The settings are copied into the pnpm.ignoredOptionalDependencies field of the common/temp/package.json
|
|
301
|
+
* file that is generated by Rush during installation.
|
|
302
|
+
*
|
|
303
|
+
* PNPM documentation: https://pnpm.io/package_json#pnpmignoredoptionaldependencies
|
|
304
|
+
*/
|
|
305
|
+
readonly globalIgnoredOptionalDependencies: string[] | undefined;
|
|
291
306
|
/**
|
|
292
307
|
* The `globalAllowedDeprecatedVersions` setting suppresses installation warnings for package
|
|
293
308
|
* versions that the NPM registry reports as being deprecated. This is useful if the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.140.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
|
"@types/node-fetch": "2.6.2",
|
|
37
37
|
"tapable": "2.2.1",
|
|
38
|
-
"@rushstack/
|
|
39
|
-
"@rushstack/
|
|
38
|
+
"@rushstack/lookup-by-path": "0.4.2",
|
|
39
|
+
"@rushstack/package-deps-hash": "4.2.7",
|
|
40
40
|
"@rushstack/terminal": "0.14.2",
|
|
41
|
-
"@rushstack/
|
|
41
|
+
"@rushstack/node-core-library": "5.9.0"
|
|
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
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"@rushstack/heft-webpack5-plugin": "0.11.2",
|
|
50
|
-
"@rushstack/stream-collator": "4.1.72",
|
|
47
|
+
"@rushstack/heft": "0.68.6",
|
|
48
|
+
"@microsoft/rush-lib": "5.140.1",
|
|
51
49
|
"local-node-rig": "1.0.0",
|
|
52
|
-
"@rushstack/
|
|
53
|
-
"@rushstack/
|
|
50
|
+
"@rushstack/heft-webpack5-plugin": "0.11.4",
|
|
51
|
+
"@rushstack/stream-collator": "4.1.74",
|
|
52
|
+
"@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.73",
|
|
53
|
+
"@rushstack/ts-command-line": "4.23.0"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "heft build --clean",
|