We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d06b7ea commit 563026bCopy full SHA for 563026b
2 files changed
packages/simple-github-release/.size-limit.json
@@ -1,7 +1,7 @@
1
[
2
{
3
"path": "dist/index.js",
4
- "limit": "2.4 kB"
+ "limit": "2.5 kB"
5
},
6
7
"path": "dist/cli/index.js",
packages/simple-github-release/src/git.ts
@@ -32,13 +32,15 @@ function getBranchName() {
32
/* c8 ignore stop */
33
}
34
35
+/* c8 ignore start */
36
function getRemoteForBranch(branch: string) {
37
return spawn('git', [
38
'config',
39
'--get',
40
`branch.${branch}.remote`
41
])
42
43
+/* c8 ignore end */
44
45
async function getRemote() {
46
const branchName = await getBranchName()
0 commit comments