Skip to content

Commit

Permalink
refactor: πŸ’‘ use git-cz
Browse files Browse the repository at this point in the history
git-cz instead of

BREAKING CHANGE: 🧨 N

βœ… Closes: N
  • Loading branch information
jiucheng-front committed Mar 29, 2020
1 parent 94814a4 commit 3ff33f9
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions changelog.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
module.exports = {
'disableEmoji': false,
'list': [
'test',
'feat',
'fix',
'chore',
'docs',
'refactor',
'style'
],
'maxMessageLength': 64,
'minMessageLength': 3,
'questions': [
'type',
'scope',
'subject',
'body',
'breaking',
'issues',
'lerna'
],
'scopes': [],
'types': {
'chore': {
'description': 'Build process or auxiliary tool changes',
'emoji': 'πŸ€–',
'value': 'chore'
},
'ci': {
'description': 'CI related changes',
'emoji': '🎑',
'value': 'ci'
},
'docs': {
'description': 'Documentation only changes',
'emoji': '✏️',
'value': 'docs'
},
'feat': {
'description': 'A new feature',
'emoji': '🎸',
'value': 'feat'
},
'fix': {
'description': 'A bug fix',
'emoji': 'πŸ›',
'value': 'fix'
},
'perf': {
'description': 'A code change that improves performance',
'emoji': '⚑️',
'value': 'perf'
},
'refactor': {
'description': 'A code change that neither fixes a bug or adds a feature',
'emoji': 'πŸ’‘',
'value': 'refactor'
},
'release': {
'description': 'Create a release commit',
'emoji': '🏹',
'value': 'release'
},
'style': {
'description': 'Markup, white-space, formatting, missing semi-colons...',
'emoji': 'πŸ’„',
'value': 'style'
},
'test': {
'description': 'Adding missing tests',
'emoji': 'πŸ’',
'value': 'test'
}
}
}

0 comments on commit 3ff33f9

Please sign in to comment.