Skip to content

Commit 3bbe133

Browse files
committed
fix: o
1 parent 9af7879 commit 3bbe133

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/perfect-donuts-cross.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'typedoc-plugin-markdown': patch
3+
---
4+
5+
Test auto-bullet

scripts/changesets/changelog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ const getReleaseLine = async (changeset, _type) => {
33
.split('\n')
44
.map((l) => l.trimRight());
55

6-
let returnVal = firstLine;
6+
let returnVal = `- ${firstLine}`;
77

88
if (futureLines.length > 0) {
9-
returnVal += `\n${futureLines.map((l) => ` ${l}`).join('\n')}`;
9+
returnVal += `\n- ${futureLines.map((l) => ` ${l}`).join('\n')}`;
1010
}
1111

1212
return returnVal;

0 commit comments

Comments
 (0)