@rushstack/rush-sdk 5.117.7 → 5.117.9

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.
@@ -1932,6 +1932,10 @@ export declare interface _IPnpmOptionsJson extends IPackageManagerOptionsJsonBas
1932
1932
  * {@inheritDoc PnpmOptionsConfiguration.autoInstallPeers}
1933
1933
  */
1934
1934
  autoInstallPeers?: boolean;
1935
+ /**
1936
+ * {@inheritDoc PnpmOptionsConfiguration.alwaysFullInstall}
1937
+ */
1938
+ alwaysFullInstall?: boolean;
1935
1939
  }
1936
1940
 
1937
1941
  declare interface IPnpmPackageExtension {
@@ -3161,6 +3165,15 @@ export declare class PnpmOptionsConfiguration extends PackageManagerOptionsConfi
3161
3165
  */
3162
3166
  readonly unsupportedPackageJsonSettings: unknown | undefined;
3163
3167
  readonly jsonFilename: string | undefined;
3168
+ /**
3169
+ * (EXPERIMENTAL) If "true", then filtered installs ("rush install --to my-project")
3170
+ * will be disregarded, instead always performing a full installation of the lockfile.
3171
+ * This setting is primarily useful with Rush subspaces which enable filtering across
3172
+ * multiple lockfiles, if filtering may be inefficient or undesirable for certain lockfiles.
3173
+ *
3174
+ * The default value is false.
3175
+ */
3176
+ readonly alwaysFullInstall: boolean | undefined;
3164
3177
  /**
3165
3178
  * (GENERATED BY RUSH-PNPM PATCH-COMMIT) When modifying this property, make sure you know what you are doing.
3166
3179
  *
@@ -94,6 +94,10 @@ export interface IPnpmOptionsJson extends IPackageManagerOptionsJsonBase {
94
94
  * {@inheritDoc PnpmOptionsConfiguration.autoInstallPeers}
95
95
  */
96
96
  autoInstallPeers?: boolean;
97
+ /**
98
+ * {@inheritDoc PnpmOptionsConfiguration.alwaysFullInstall}
99
+ */
100
+ alwaysFullInstall?: boolean;
97
101
  }
98
102
  /**
99
103
  * Options that are only used when the PNPM package manager is selected.
@@ -273,6 +277,15 @@ export declare class PnpmOptionsConfiguration extends PackageManagerOptionsConfi
273
277
  */
274
278
  readonly unsupportedPackageJsonSettings: unknown | undefined;
275
279
  readonly jsonFilename: string | undefined;
280
+ /**
281
+ * (EXPERIMENTAL) If "true", then filtered installs ("rush install --to my-project")
282
+ * will be disregarded, instead always performing a full installation of the lockfile.
283
+ * This setting is primarily useful with Rush subspaces which enable filtering across
284
+ * multiple lockfiles, if filtering may be inefficient or undesirable for certain lockfiles.
285
+ *
286
+ * The default value is false.
287
+ */
288
+ readonly alwaysFullInstall: boolean | undefined;
276
289
  /**
277
290
  * (GENERATED BY RUSH-PNPM PATCH-COMMIT) When modifying this property, make sure you know what you are doing.
278
291
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.117.7",
3
+ "version": "5.117.9",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,9 +32,9 @@
32
32
  "@types/semver": "7.5.0",
33
33
  "@types/webpack-env": "1.18.0",
34
34
  "@rushstack/heft": "0.66.0",
35
+ "@microsoft/rush-lib": "5.117.9",
35
36
  "local-node-rig": "1.0.0",
36
37
  "@rushstack/ts-command-line": "4.19.1",
37
- "@microsoft/rush-lib": "5.117.7",
38
38
  "@rushstack/stream-collator": "4.1.38"
39
39
  },
40
40
  "scripts": {