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
@@ -46,7 +46,8 @@ export class TsconfigFormatter extends BaseFormatter {
];
}
} catch (error) {
logVerbose(`Could not get tspublish modules: ${error.message}`);
const errorMessage = error instanceof Error ? error.message : String(error);
logVerbose(`Could not get tspublish modules: ${errorMessage}`);
}
tsconfigObject.compilerOptions.paths = { ...existingPaths, ...tspublishPaths };