Skip to content

Commit c60464d

Browse files
authored
fix(script): remove highlights template from release notes (#11052)
1 parent 4e41ca7 commit c60464d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/publish-start.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { buildNotes, getLatestRelease } from "./changelog"
66

77
const highlightsTemplate = `## Highlights
88
9-
<!--
9+
<!--
1010
Add highlights before publishing. Delete this section if no highlights.
1111
1212
- For multiple highlights, use multiple <highlight> tags
@@ -40,7 +40,7 @@ console.log("=== publishing ===\n")
4040
if (!Script.preview) {
4141
const previous = await getLatestRelease()
4242
notes = await buildNotes(previous, "HEAD")
43-
notes.unshift(highlightsTemplate)
43+
// notes.unshift(highlightsTemplate)
4444
}
4545

4646
const pkgjsons = await Array.fromAsync(

0 commit comments

Comments
 (0)