diff --git a/scripts/releaseChangelog.mjs b/scripts/releaseChangelog.mjs index 6f8d5c7808..3a1a4be413 100644 --- a/scripts/releaseChangelog.mjs +++ b/scripts/releaseChangelog.mjs @@ -140,15 +140,8 @@ async function main(argv) { return aTags.localeCompare(bTags); }); const changes = commitsItems.map((commitsItem) => { - // Helps changelog author keeping track of order when grouping commits under headings. - // ​ is a zero-width-space that ensures that the content of the listitem is formatted properly - const dateSortMarker = `​`; const shortMessage = commitsItem.commit.message.split('\n')[0]; - return `- ${dateSortMarker}${shortMessage} @${getAuthor(commitsItem)}`; + return `- ${shortMessage} @${getAuthor(commitsItem)}`; }); const nowFormatted = new Date().toLocaleDateString('en-US', { month: 'short', @@ -200,7 +193,7 @@ yargs(process.argv.slice(2)) type: 'string', }) .option('repo', { - default: 'material-ui', + default: 'base-ui', describe: 'Repository to generate a changelog for', type: 'string', });