UNPKG

@semantic-release/changelog

Version:

semantic-release plugin to create or update a changelog file

7 lines (5 loc) • 187 B
import { isNil } from "lodash-es"; export default ({ changelogFile, changelogTitle }) => ({ changelogFile: isNil(changelogFile) ? "CHANGELOG.md" : changelogFile, changelogTitle, });