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
@@ -93,7 +93,8 @@ export class CopyFormatter extends BaseFormatter {
}
}
} catch (error) {
logVerbose(`Failed to process pattern ${pattern.from}: ${error.message}`);
const errorMessage = error instanceof Error ? error.message : String(error);
logVerbose(`Failed to process pattern ${pattern.from}: ${errorMessage}`);
}
}