Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/gitmoji-changelog-cli/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ yargs
.option('format', { default: 'markdown', desc: 'changelog format (markdown, json)' })
.option('preset', { default: 'node', desc: 'define preset mode', choices: ['node', 'generic', 'maven', 'cargo', 'helm', 'python'] })
.option('output', { desc: 'output changelog file' })
.option('group-similar-commits', { desc: '[⚗️ - beta] try to group similar commits', default: false })
.option('author', { default: false, desc: 'add the author in changelog lines' })
.option('interactive', { default: false, desc: 'select commits manually', alias: 'i' })
.option('group-similar-commits', { desc: '[⚗️ - beta] try to group similar commits', default: false, type: 'boolean' })
.option('author', { default: false, desc: 'add the author in changelog lines', type: 'boolean' })
.option('interactive', {
default: false, desc: 'select commits manually', alias: 'i', type: 'boolean',
})

.help('help')
.epilog(`For more information visit: ${homepage}`)
Expand Down