MCPcopy Create free account
hub / github.com/api3dao/airnode / applyReleaseChanges

Function applyReleaseChanges

docker/scripts/npm.ts:111–117  ·  view source on GitHub ↗
(releaseVersion: string, branch: string)

Source from the content-addressed store, hash-verified

109};
110
111const 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
119const getNpmRegistryUrl = (npmRegistry: string) => {
120 let npmRegistryUrl = npmRegistry;

Callers 1

openPullRequestFunction · 0.85

Calls 1

runCommandFunction · 0.90

Tested by

no test coverage detected