fix(commands): incorrect formatting of changelog hashes

This commit is contained in:
2023-08-20 04:03:11 +03:00
parent 605055eb76
commit d3cf78aacb
3 changed files with 47 additions and 40 deletions

9
.rczrc
View File

@@ -1 +1,8 @@
{} {
"scopes": [
"commands",
"changelog",
"readme",
"release"
]
}

View File

@@ -317,7 +317,7 @@ program
: firstMessageLine[0]; : firstMessageLine[0];
console.log( console.log(
`${showHashes ? `- [${"`"}${shortHash}${"`"}]` : ``} - ${ `${showHashes ? `- [${shortHash}]` : ``} - ${
type ? `**${type}**: ${briefMessage}` : briefMessage type ? `**${type}**: ${briefMessage}` : briefMessage
}` }`
); );