Skip to content

Commit

Permalink
Update build
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire committed Feb 1, 2024
1 parent 0e8af89 commit 4615aa2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3038,14 +3038,17 @@ async function getCommitHashesInRange(commitRange, rootDirectory) {
* @param options.tagPrefixes - A list of tag prefixes to look for, where the first is the intended
* prefix and each subsequent prefix is a fallback in case the previous tag prefixes are not found.
* @param options.formatter - A custom Markdown formatter to use.
* @param options.packageRename - The package rename properties.
* An optional, which is required only in case of package renamed.
* @returns The updated changelog text.
*/
async function updateChangelog({ changelogContent, currentVersion, repoUrl, isReleaseCandidate, projectRootDirectory, tagPrefixes = ['v'], formatter = undefined, }) {
async function updateChangelog({ changelogContent, currentVersion, repoUrl, isReleaseCandidate, projectRootDirectory, tagPrefixes = ['v'], formatter = undefined, packageRename, }) {
const changelog = (0, parse_changelog_1.parseChangelog)({
changelogContent,
repoUrl,
tagPrefix: tagPrefixes[0],
formatter,
packageRename,
});
// Ensure we have all tags on remote
await runCommand('git', ['fetch', '--tags']);
Expand Down

0 comments on commit 4615aa2

Please sign in to comment.