-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49e11ac
commit e8e4d19
Showing
2 changed files
with
28 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import type { ChangelogConfig } from 'changelogen' | ||
|
||
function getDefaultConfig() { | ||
return <Partial<ChangelogConfig>>{ | ||
types: { | ||
version: { title: '🔖 Version', semver: 'patch' }, | ||
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' }, | ||
}, | ||
repo: { | ||
repo: 'oku-ui/primitives', | ||
provider: 'github', | ||
}, | ||
} | ||
} | ||
|
||
export default getDefaultConfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters