This commit is contained in:
wanl 2024-11-04 15:56:26 +08:00
Родитель 266508f37f
Коммит 167285402c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -243,7 +243,7 @@ export async function generateRLCInPipeline(options: {
logger.info(`Start to run command 'node common/scripts/install-run-rush.js pack --to ${packageName} --verbose'.`);
execSync(`node common/scripts/install-run-rush.js pack --to ${packageName} --verbose`, {stdio: 'inherit'});
if (!options.skipGeneration) {
const changelog = await generateChangelogAndBumpVersion(packagePath);
const changelog = await generateChangelogAndBumpVersion(relativePackagePath);
outputPackageInfo.changelog.breakingChangeItems = changelog?.getBreakingChangeItems() ?? [];
outputPackageInfo.changelog.content = changelog?.displayChangeLog() ?? '';
outputPackageInfo.changelog.hasBreakingChange = changelog?.hasBreakingChange ?? false;