fix(cli): improve changelog release handling and TypeScript compatibility

This commit is contained in:
2026-06-03 09:53:36 +00:00
parent 5cba50b56e
commit 0b7cd9c635
20 changed files with 1068 additions and 3206 deletions
+2 -1
View File
@@ -42,9 +42,10 @@ export class DiffReporter {
change.content,
);
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logger.log(
'error',
`Failed to generate diff for ${change.path}: ${error.message}`,
`Failed to generate diff for ${change.path}: ${errorMessage}`,
);
return null;
}