File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ function sha(commitish) {
1212function 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}
1617export function release ( increment ) {
1718 const releaseType = semver . RELEASE_TYPES . find ( ( r ) => r === increment ) ;
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ function sha(commitish: string) {
1515function 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
2021export function release ( increment : string ) {
You can’t perform that action at this time.
0 commit comments