UNPKG

@semantic-release/changelog

Version:

semantic-release plugin to create or update a changelog file

7 lines (5 loc) 187 B
const {isNil} = require('lodash'); module.exports = ({changelogFile, changelogTitle}) => ({ changelogFile: isNil(changelogFile) ? 'CHANGELOG.md' : changelogFile, changelogTitle, });