Skip to content

Commit ef0f7c0

Browse files
chore: update release script with format (#432)
1 parent b876754 commit ef0f7c0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tools/generated/release/release.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ function sha(commitish) {
1212
function bumpPackages(version) {
1313
execSync(`pnpm version --no-git-tag-version ${version}`);
1414
execSync(`pnpm -r exec pnpm version --no-git-tag-version ${version}`);
15+
execSync("pnpm format");
1516
}
1617
export function release(increment) {
1718
const releaseType = semver.RELEASE_TYPES.find((r) => r === increment);

tools/src/release/release.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ function sha(commitish: string) {
1515
function bumpPackages(version: string) {
1616
execSync(`pnpm version --no-git-tag-version ${version}`);
1717
execSync(`pnpm -r exec pnpm version --no-git-tag-version ${version}`);
18+
execSync("pnpm format");
1819
}
1920

2021
export function release(increment: string) {

0 commit comments

Comments
 (0)