File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -194,6 +194,16 @@ export class Buddy {
194
194
// Update package.json with new versions
195
195
const packageJsonUpdates = await this . generateAllFileUpdates ( group . updates )
196
196
197
+ // Debug logging to understand what files are being processed
198
+ console . log ( `🐛 DEBUG: Processing group "${ group . name } " with ${ group . updates . length } updates:` )
199
+ group . updates . forEach ( update => {
200
+ console . log ( `🐛 - ${ update . name } : ${ update . currentVersion } -> ${ update . newVersion } (${ update . file } , ${ update . updateType } )` )
201
+ } )
202
+ console . log ( `🐛 DEBUG: Generated ${ packageJsonUpdates . length } file updates:` )
203
+ packageJsonUpdates . forEach ( fileUpdate => {
204
+ console . log ( `🐛 - File: ${ fileUpdate . path } ` )
205
+ } )
206
+
197
207
// Commit changes
198
208
await gitProvider . commitChanges ( branchName , group . title , packageJsonUpdates )
199
209
You can’t perform that action at this time.
0 commit comments