@rushstack/rush-sdk 5.122.0 → 5.122.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
|
@@ -4619,6 +4619,13 @@ export declare class Subspace {
|
|
|
4619
4619
|
* @beta
|
|
4620
4620
|
*/
|
|
4621
4621
|
getCommonVersionsFilePath(): string;
|
|
4622
|
+
/**
|
|
4623
|
+
* Gets the path to the pnpm-config.json config file for this subspace.
|
|
4624
|
+
*
|
|
4625
|
+
* Example: `C:\MyRepo\common\subspaces\my-subspace\pnpm-config.json`
|
|
4626
|
+
* @beta
|
|
4627
|
+
*/
|
|
4628
|
+
getPnpmConfigFilePath(): string;
|
|
4622
4629
|
/**
|
|
4623
4630
|
* Gets the settings from the common-versions.json config file.
|
|
4624
4631
|
* @beta
|
package/lib/api/Subspace.d.ts
CHANGED
|
@@ -81,6 +81,13 @@ export declare class Subspace {
|
|
|
81
81
|
* @beta
|
|
82
82
|
*/
|
|
83
83
|
getCommonVersionsFilePath(): string;
|
|
84
|
+
/**
|
|
85
|
+
* Gets the path to the pnpm-config.json config file for this subspace.
|
|
86
|
+
*
|
|
87
|
+
* Example: `C:\MyRepo\common\subspaces\my-subspace\pnpm-config.json`
|
|
88
|
+
* @beta
|
|
89
|
+
*/
|
|
90
|
+
getPnpmConfigFilePath(): string;
|
|
84
91
|
/**
|
|
85
92
|
* Gets the settings from the common-versions.json config file.
|
|
86
93
|
* @beta
|
|
@@ -21,7 +21,7 @@ export declare abstract class BaseShrinkwrapFile {
|
|
|
21
21
|
*
|
|
22
22
|
* @virtual
|
|
23
23
|
*/
|
|
24
|
-
validateShrinkwrapAfterUpdate(rushConfiguration: RushConfiguration, terminal: ITerminal): void;
|
|
24
|
+
validateShrinkwrapAfterUpdate(rushConfiguration: RushConfiguration, subspace: Subspace, terminal: ITerminal): void;
|
|
25
25
|
/**
|
|
26
26
|
* Validate the shrinkwrap using the provided policy options.
|
|
27
27
|
*
|
|
@@ -140,7 +140,7 @@ export declare class PnpmShrinkwrapFile extends BaseShrinkwrapFile {
|
|
|
140
140
|
*/
|
|
141
141
|
private _disallowInsecureSha1;
|
|
142
142
|
/** @override */
|
|
143
|
-
validateShrinkwrapAfterUpdate(rushConfiguration: RushConfiguration, terminal: ITerminal): void;
|
|
143
|
+
validateShrinkwrapAfterUpdate(rushConfiguration: RushConfiguration, subspace: Subspace, terminal: ITerminal): void;
|
|
144
144
|
/** @override */
|
|
145
145
|
validate(packageManagerOptionsConfig: PackageManagerOptionsConfigurationBase, policyOptions: IShrinkwrapFilePolicyValidatorOptions, experimentsConfig?: IExperimentsJson): void;
|
|
146
146
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.122.
|
|
3
|
+
"version": "5.122.1",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@types/node-fetch": "2.6.2",
|
|
27
27
|
"tapable": "2.2.1",
|
|
28
|
-
"@rushstack/
|
|
29
|
-
"@rushstack/
|
|
28
|
+
"@rushstack/node-core-library": "4.1.0",
|
|
29
|
+
"@rushstack/terminal": "0.10.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/semver": "7.5.0",
|
|
33
33
|
"@types/webpack-env": "1.18.0",
|
|
34
|
-
"@rushstack/heft": "0.66.3",
|
|
35
|
-
"@microsoft/rush-lib": "5.122.0",
|
|
36
34
|
"local-node-rig": "1.0.0",
|
|
35
|
+
"@microsoft/rush-lib": "5.122.1",
|
|
37
36
|
"@rushstack/stream-collator": "4.1.41",
|
|
37
|
+
"@rushstack/heft": "0.66.3",
|
|
38
38
|
"@rushstack/ts-command-line": "4.19.2"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|