(releaseVersion: string, branch: string)
| 109 | }; |
| 110 | |
| 111 | const applyReleaseChanges = (releaseVersion: string, branch: string) => { |
| 112 | runCommand(`yarn changeset:new-version`, { stdio: 'ignore' }); |
| 113 | runCommand(`yarn changeset add --empty`, { stdio: 'ignore' }); |
| 114 | git.add(); |
| 115 | git.commit(`Release v${releaseVersion}`); |
| 116 | git.push(branch); |
| 117 | }; |
| 118 | |
| 119 | const getNpmRegistryUrl = (npmRegistry: string) => { |
| 120 | let npmRegistryUrl = npmRegistry; |
no test coverage detected