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 9bb4bd3Copy full SHA for 9bb4bd3
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
@@ -33,11 +33,13 @@ function getBranchName() {
33
}
34
35
function getRemoteForBranch(branch: string) {
36
+ /* c8 ignore start */
37
return spawn('git', [
38
'config',
39
'--get',
40
`branch.${branch}.remote`
41
])
42
+ /* c8 ignore end */
43
44
45
async function getRemote() {
0 commit comments