@rushstack/rush-sdk 5.128.0 → 5.128.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/lib/logic/Git.d.ts +7 -1
- package/package.json +7 -7
package/lib/logic/Git.d.ts
CHANGED
|
@@ -91,11 +91,17 @@ export declare class Git {
|
|
|
91
91
|
* `git@github.com:ExampleOrg/ExampleProject.git` --> `https://github.com/ExampleOrg/ExampleProject`
|
|
92
92
|
*/
|
|
93
93
|
static normalizeGitUrlForComparison(gitUrl: string): string;
|
|
94
|
+
/**
|
|
95
|
+
* This will throw errors only if we cannot find Git commandline.
|
|
96
|
+
* If git email didn't configure, this will return undefined; otherwise,
|
|
97
|
+
* returns user.email config
|
|
98
|
+
*/
|
|
99
|
+
tryGetGitEmailAsync(): Promise<string | undefined>;
|
|
94
100
|
/**
|
|
95
101
|
* Returns an object containing either the result of the `git config user.email`
|
|
96
102
|
* command or an error.
|
|
97
103
|
*/
|
|
98
|
-
|
|
104
|
+
private _tryGetGitEmailAsync;
|
|
99
105
|
private _tryGetGitHooksPathAsync;
|
|
100
106
|
private _tryFetchRemoteBranch;
|
|
101
107
|
private _fetchRemoteBranch;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.128.
|
|
3
|
+
"version": "5.128.1",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@types/node-fetch": "2.6.2",
|
|
27
27
|
"tapable": "2.2.1",
|
|
28
|
-
"@rushstack/
|
|
29
|
-
"@rushstack/
|
|
28
|
+
"@rushstack/terminal": "0.13.0",
|
|
29
|
+
"@rushstack/node-core-library": "5.4.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/semver": "7.5.0",
|
|
33
33
|
"@types/webpack-env": "1.18.0",
|
|
34
|
-
"@microsoft/rush-lib": "5.128.
|
|
35
|
-
"@rushstack/heft": "0.66.18",
|
|
34
|
+
"@microsoft/rush-lib": "5.128.1",
|
|
36
35
|
"@rushstack/stream-collator": "4.1.56",
|
|
37
|
-
"
|
|
38
|
-
"@rushstack/ts-command-line": "4.22.0"
|
|
36
|
+
"@rushstack/heft": "0.66.18",
|
|
37
|
+
"@rushstack/ts-command-line": "4.22.0",
|
|
38
|
+
"local-node-rig": "1.0.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "heft build --clean",
|