Skip to content

Commit 9bdceea

Browse files
committed
Fix stray space in cm unreleased output
1 parent 6c2c3ba commit 9bdceea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/cm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ function unreleased() {
279279
for (let pkg of packages) {
280280
let ver = version(pkg), changes = changelog(pkg, ver)
281281
if (changes.fix.length || changes.feature.length || changes.breaking.length)
282-
console.log(pkg.name + ":\n\n", releaseNotes(changes, ver).body)
282+
console.log(pkg.name + ":\n\n" + releaseNotes(changes, ver).body)
283283
}
284284
}
285285

0 commit comments

Comments
 (0)