File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 8787 " eslint"
8888 ]
8989 },
90- "version" : " 25.19 .0" ,
90+ "version" : " 25.22 .0" ,
9191 "packageManager" : " pnpm@9.6.0"
9292}
Original file line number Diff line number Diff line change @@ -165,6 +165,15 @@ const checkUncommittedChanges = () => {
165165 }
166166} ;
167167
168+ const installDependencies = ( ) => {
169+ console . log ( "Installing dependencies..." ) ;
170+ if ( isDryRun ) {
171+ console . log ( "[Dry Run] Dependencies would be installed." ) ;
172+ } else {
173+ runProjectRootCommand ( "pnpm i" ) ;
174+ }
175+ } ;
176+
168177const buildProject = ( ) => {
169178 console . log ( "Building project..." ) ;
170179 let filter = "" ;
@@ -246,6 +255,8 @@ const main = async () => {
246255
247256 checkUncommittedChanges ( ) ;
248257
258+ installDependencies ( ) ;
259+
249260 let changelogContent ;
250261 let newVersion ;
251262 if ( ! hotfix ) {
You can’t perform that action at this time.
0 commit comments