UNPKG

767 BJavaScriptView Raw
1'use strict'
2
3const path = require('path')
4// eslint-disable-next-line import/no-dynamic-require
5const packageJSON = require(path.resolve(process.cwd(), 'package.json'))
6
7const changelogTitle = `# ${packageJSON.name} changelog
8
9This project strictly adheres to semver and will err on the side of releasing majors when
10changes could possibly introduce breaking changes. This changelog is dynamically generated
11with [Semantic Release](https://semantic-release.gitbook.io/semantic-release/) configured
12with [@crystal-ball/semantic-release-base](https://github.com/crystal-ball/semantic-release-base).
13
14> Changelog tags
15>
16> - 💥 - Breaking change
17> - 🔖 - Release notes
18> - 💖 - New feature
19> - ✨ - Updates
20> - 🛠 - Fixes
21`
22
23module.exports = { changelogTitle }