chore(scripts): adjust release notes indent

This commit is contained in:
Elliot DeNolf
2024-07-24 14:27:36 -04:00
parent 51f1c8e7e8
commit 0627272d6c

View File

@@ -197,7 +197,7 @@ function formatCommitForChangelog(commit: GitCommit, includeBreakingNotes = fals
const [rawNotes, _] = commit.body.split('\n\n')
let notes = rawNotes
.split('\n')
.map((l) => `> ${l}`)
.map((l) => ` ${l}`) // Indent notes
.join('\n')
.trim()