Skip to content

Commit a375eae

Browse files
fix: Don't write undefined to changelog (#31)
1 parent 0f307b4 commit a375eae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/publish/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ export const publish = async (options) => {
335335
const changelogMd = [
336336
`Version ${version} - ${DateTime.now().toLocaleString(
337337
DateTime.DATETIME_SHORT,
338-
)}${tag ? ' (Manual Release)' : undefined}`,
338+
)}${tag ? ' (Manual Release)' : ''}`,
339339
'## Changes',
340340
changelogCommitsMd ? changelogCommitsMd : '- None',
341341
'## Packages',

0 commit comments

Comments
 (0)