-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.config.js
29 lines (29 loc) · 944 Bytes
/
changelog.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module.exports = {
types: {
feat: { title: '🚀 Enhancements', semver: 'minor' },
perf: { title: '🔥 Performance', semver: 'patch' },
fix: { title: '🩹 Fixes', semver: 'patch' },
refactor: { title: '💅 Refactors', semver: 'patch' },
docs: { title: '📖 Documentation', semver: 'patch' },
build: { title: '📦 Build', semver: 'patch' },
types: { title: '🌊 Types', semver: 'patch' },
chore: { title: '🏡 Chore' },
examples: { title: '🏀 Examples' },
test: { title: '✅ Tests' },
style: { title: '🎨 Styles' },
ci: { title: '🤖 CI' }
},
cwd: null,
from: '',
to: '',
output: 'CHANGELOG.md',
scopeMap: {},
tokens: {
github: process.env.CHANGELOGEN_TOKENS_GITHUB || process.env.GITHUB_TOKEN || process.env.GH_TOKEN
},
templates: {
commitMessage: 'chore(release): v{{newVersion}}',
tagMessage: 'v{{newVersion}}',
tagBody: 'v{{newVersion}}'
}
}