@rushstack/rush-sdk 5.117.8 → 5.117.10

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
  *
@@ -4126,6 +4139,10 @@ export declare class RushConstants {
4126
4139
  * The filename (".pnpmfile.cjs") used to add custom configuration to PNPM (PNPM version 6.x and later).
4127
4140
  */
4128
4141
  static readonly pnpmfileV6Filename: '.pnpmfile.cjs';
4142
+ /**
4143
+ * The filename (".modules.yaml") used by pnpm to specify configurations in the node_modules directory
4144
+ */
4145
+ static readonly pnpmModulesFilename: '.modules.yaml';
4129
4146
  /**
4130
4147
  * The filename ("global-pnpmfile.cjs") used to add custom configuration to subspaces
4131
4148
  */
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.42.3"
8
+ "packageVersion": "7.43.0"
9
9
  }
10
10
  ]
11
11
  }
@@ -73,6 +73,10 @@ export declare class RushConstants {
73
73
  * The filename (".pnpmfile.cjs") used to add custom configuration to PNPM (PNPM version 6.x and later).
74
74
  */
75
75
  static readonly pnpmfileV6Filename: '.pnpmfile.cjs';
76
+ /**
77
+ * The filename (".modules.yaml") used by pnpm to specify configurations in the node_modules directory
78
+ */
79
+ static readonly pnpmModulesFilename: '.modules.yaml';
76
80
  /**
77
81
  * The filename ("global-pnpmfile.cjs") used to add custom configuration to subspaces
78
82
  */
@@ -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.8",
3
+ "version": "5.117.10",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,11 +31,11 @@
31
31
  "devDependencies": {
32
32
  "@types/semver": "7.5.0",
33
33
  "@types/webpack-env": "1.18.0",
34
- "@microsoft/rush-lib": "5.117.8",
35
- "@rushstack/heft": "0.66.0",
36
- "@rushstack/ts-command-line": "4.19.1",
34
+ "@microsoft/rush-lib": "5.117.10",
37
35
  "local-node-rig": "1.0.0",
38
- "@rushstack/stream-collator": "4.1.38"
36
+ "@rushstack/ts-command-line": "4.19.1",
37
+ "@rushstack/heft": "0.66.2",
38
+ "@rushstack/stream-collator": "4.1.40"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "heft build --clean",