@npmcli/template-oss 4.23.2 → 4.23.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/release/changelog.js +2 -2
- package/package.json +1 -1
package/lib/release/changelog.js
CHANGED
|
@@ -51,7 +51,7 @@ class Changelog {
|
|
|
51
51
|
return ''
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
return body.join('\n
|
|
54
|
+
return body.join('\n').trim()
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
|
@@ -154,7 +154,7 @@ class ChangelogNotes {
|
|
|
154
154
|
const subject = wrapSpecs(commit.bareMessage)
|
|
155
155
|
entry.push([scope, subject].filter(Boolean).join(' '))
|
|
156
156
|
|
|
157
|
-
// A list
|
|
157
|
+
// A list of the authors github handles or names
|
|
158
158
|
if (commit.authors.length) {
|
|
159
159
|
entry.push(`(${commit.authors.join(', ')})`)
|
|
160
160
|
}
|