We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fdb502 commit 096e076Copy full SHA for 096e076
ship.config.js
@@ -85,9 +85,7 @@ export default {
85
extractChangelog: async ({ version, dir }) => {
86
const changelogPath = path.resolve(dir, 'CHANGELOG.md')
87
try {
88
- const changelogFile = (
89
- await fs.readFile(changelogPath, 'utf-8')
90
- ).toString()
+ const changelogFile = await fs.readFile(changelogPath, 'utf-8')
91
const ret = extractSpecificChangelog(changelogFile, version)
92
return ret
93
} catch (err) {
0 commit comments