@@ -111,7 +111,7 @@ function getGitRemote(gitBaseRemote: string): string | false {
111111
112112 // update the version
113113 await command ( 'npm' , [ 'version' , releaseVersion , '--no-git-tag-version' ] , { cwd : 'dist/release' } , true ) ;
114- await command ( 'npm' , [ 'version' , releaseVersion , '--no-git-tag-version' ] , { } , true ) ;
114+ await command ( 'npm' , [ 'version' , releaseVersion , '--no-git-tag-version' ] , { } , false ) ;
115115
116116 const npmPublishArgs = [
117117 'publish' ,
@@ -136,7 +136,7 @@ function getGitRemote(gitBaseRemote: string): string | false {
136136
137137 // update the package meta version to next
138138 await command ( 'npm' , [ 'version' , nextVersion , '--no-git-tag-version' ] , { cwd : 'dist/release' } , true ) ;
139- await command ( 'npm' , [ 'version' , nextVersion , '--no-git-tag-version' ] , { } , true ) ;
139+ await command ( 'npm' , [ 'version' , nextVersion , '--no-git-tag-version' ] , { } , false ) ;
140140
141141 // commit the changes
142142 await command ( 'git' , [ 'commit' , '-am' , `"Update package metadata"` ] , false ) ;
0 commit comments