Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Commit

Permalink
fix(release): change roundup messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
ostowe committed Jun 30, 2021
1 parent ec96409 commit 5b1890a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bin/reconcile-release
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,9 @@ Please manually resolve conflicts in this file and continue when finished. Keep
{
type: 'input',
name: 'releaseVersion',
message: 'What is the latest release version on your release branch?',
message: 'What version are you releasing? (e.g. 6.5)',
}
]);
console.log(chalk.green(`Creating commit roundup for ${releaseVersion}`));
const changelog = fs.readFileSync(
path.join(__dirname, '../CHANGELOG.md'),
'utf8'
Expand All @@ -115,7 +114,7 @@ Please manually resolve conflicts in this file and continue when finished. Keep
.replace('# [', '### [')
)).join('');

console.log(chalk.magentaBright('Commit roundup generated'));
console.log(chalk.magentaBright(`Commit roundup generated for release ${releaseVersion}`));
console.log(entriesCleaned);
}

Expand Down

0 comments on commit 5b1890a

Please sign in to comment.