@rushstack/rush-sdk 5.117.5 → 5.117.7
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.
|
@@ -11,6 +11,15 @@ export interface ILogger {
|
|
|
11
11
|
* @returns
|
|
12
12
|
* The text of the the synced .npmrc, if one exists. If one does not exist, then undefined is returned.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
14
|
+
export interface ISyncNpmrcOptions {
|
|
15
|
+
sourceNpmrcFolder: string;
|
|
16
|
+
targetNpmrcFolder: string;
|
|
17
|
+
useNpmrcPublish?: boolean;
|
|
18
|
+
logger?: ILogger;
|
|
19
|
+
linesToPrepend?: string[];
|
|
20
|
+
linesToAppend?: string[];
|
|
21
|
+
createIfMissing?: boolean;
|
|
22
|
+
}
|
|
23
|
+
export declare function syncNpmrc(options: ISyncNpmrcOptions): string | undefined;
|
|
15
24
|
export declare function isVariableSetInNpmrcFile(sourceNpmrcFolder: string, variableKey: string): boolean;
|
|
16
25
|
//# sourceMappingURL=npmrcUtilities.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.117.
|
|
3
|
+
"version": "5.117.7",
|
|
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.5",
|
|
35
34
|
"@rushstack/heft": "0.66.0",
|
|
36
35
|
"local-node-rig": "1.0.0",
|
|
37
|
-
"@rushstack/
|
|
38
|
-
"@
|
|
36
|
+
"@rushstack/ts-command-line": "4.19.1",
|
|
37
|
+
"@microsoft/rush-lib": "5.117.7",
|
|
38
|
+
"@rushstack/stream-collator": "4.1.38"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "heft build --clean",
|