@rushstack/rush-sdk 5.131.3 → 5.131.5

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.
@@ -4569,14 +4569,22 @@ export declare class Subspace {
4569
4569
  * Example: `common/config/subspaces/my-subspace`
4570
4570
  * @beta
4571
4571
  */
4572
- getSubspaceConfigFolder(): string;
4572
+ getSubspaceConfigFolderPath(): string;
4573
+ /**
4574
+ * Returns the full path of the folder containing this subspace's configuration files such as `pnpm-lock.yaml`.
4575
+ *
4576
+ * Example: `common/config/subspaces/my-subspace/pnpm-patches` (subspaces feature enabled)
4577
+ * Example: `common/config/pnpm-patches` (subspaces feature disabled)
4578
+ * @beta
4579
+ */
4580
+ getSubspacePnpmPatchesFolderPath(): string;
4573
4581
  /**
4574
4582
  * The folder where the subspace's node_modules and other temporary files will be stored.
4575
4583
  *
4576
4584
  * Example: `common/temp/subspaces/my-subspace`
4577
4585
  * @beta
4578
4586
  */
4579
- getSubspaceTempFolder(): string;
4587
+ getSubspaceTempFolderPath(): string;
4580
4588
  /**
4581
4589
  * Returns full path of the temporary shrinkwrap file for a specific subspace and returns the common workspace
4582
4590
  * shrinkwrap if no subspaceName is provided.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.47.5"
8
+ "packageVersion": "7.47.6"
9
9
  }
10
10
  ]
11
11
  }
@@ -1,5 +1,5 @@
1
1
  import { type IPackageJson } from '@rushstack/node-core-library';
2
- import type { RushConfiguration } from '../api/RushConfiguration';
2
+ import type { RushConfiguration } from './RushConfiguration';
3
3
  import type { VersionPolicy } from './VersionPolicy';
4
4
  import type { PackageJsonEditor } from './PackageJsonEditor';
5
5
  import type { Subspace } from './Subspace';
@@ -43,14 +43,22 @@ export declare class Subspace {
43
43
  * Example: `common/config/subspaces/my-subspace`
44
44
  * @beta
45
45
  */
46
- getSubspaceConfigFolder(): string;
46
+ getSubspaceConfigFolderPath(): string;
47
+ /**
48
+ * Returns the full path of the folder containing this subspace's configuration files such as `pnpm-lock.yaml`.
49
+ *
50
+ * Example: `common/config/subspaces/my-subspace/pnpm-patches` (subspaces feature enabled)
51
+ * Example: `common/config/pnpm-patches` (subspaces feature disabled)
52
+ * @beta
53
+ */
54
+ getSubspacePnpmPatchesFolderPath(): string;
47
55
  /**
48
56
  * The folder where the subspace's node_modules and other temporary files will be stored.
49
57
  *
50
58
  * Example: `common/temp/subspaces/my-subspace`
51
59
  * @beta
52
60
  */
53
- getSubspaceTempFolder(): string;
61
+ getSubspaceTempFolderPath(): string;
54
62
  /**
55
63
  * Returns full path of the temporary shrinkwrap file for a specific subspace and returns the common workspace
56
64
  * shrinkwrap if no subspaceName is provided.
@@ -1,7 +1,7 @@
1
1
  import { CommandLineAction, type ICommandLineActionOptions } from '@rushstack/ts-command-line';
2
2
  import type { RushConfiguration } from '../../api/RushConfiguration';
3
3
  import { EventHooksManager } from '../../logic/EventHooksManager';
4
- import { RushCommandLineParser } from './../RushCommandLineParser';
4
+ import { RushCommandLineParser } from '../RushCommandLineParser';
5
5
  import type { RushGlobalFolder } from '../../api/RushGlobalFolder';
6
6
  import type { RushSession } from '../../pluginFramework/RushSession';
7
7
  import type { IRushCommand } from '../../pluginFramework/RushLifeCycle';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.131.3",
3
+ "version": "5.131.5",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -35,21 +35,21 @@
35
35
  "dependencies": {
36
36
  "@types/node-fetch": "2.6.2",
37
37
  "tapable": "2.2.1",
38
- "@rushstack/node-core-library": "5.5.1",
39
- "@rushstack/lookup-by-path": "0.1.0",
40
- "@rushstack/terminal": "0.13.3"
38
+ "@rushstack/lookup-by-path": "0.1.1",
39
+ "@rushstack/node-core-library": "5.6.0",
40
+ "@rushstack/terminal": "0.13.4"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/semver": "7.5.0",
44
44
  "@types/webpack-env": "1.18.0",
45
45
  "webpack": "~5.82.1",
46
- "@rushstack/heft": "0.66.25",
47
- "@microsoft/rush-lib": "5.131.3",
46
+ "@microsoft/rush-lib": "5.131.5",
47
+ "@rushstack/heft": "0.66.26",
48
48
  "local-node-rig": "1.0.0",
49
- "@rushstack/stream-collator": "4.1.63",
50
- "@rushstack/ts-command-line": "4.22.4",
51
- "@rushstack/heft-webpack5-plugin": "0.10.7",
52
- "@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.62"
49
+ "@rushstack/stream-collator": "4.1.64",
50
+ "@rushstack/ts-command-line": "4.22.5",
51
+ "@rushstack/heft-webpack5-plugin": "0.10.8",
52
+ "@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.63"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "heft build --clean",