Skip to content

Commit

Permalink
Fix quote style
Browse files Browse the repository at this point in the history
  • Loading branch information
cookpete committed Nov 8, 2018
1 parent dbbe5c1 commit 5c18eda
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/run.js
Expand Up @@ -27,13 +27,13 @@ function getOptions (argv, pkg) {
.option('-v, --latest-version [version]', 'use specified version as latest release')
.option('-u, --unreleased', 'include section for unreleased changes')
.option('-l, --commit-limit [count]', `number of commits to display per release, default: ${DEFAULT_OPTIONS.commitLimit}`, parseLimit)
.option('-i, --issue-url [url]', `override url for issues, use {id} for issue id`)
.option('--issue-pattern [regex]', `override regex pattern for issues in commit messages`)
.option('--breaking-pattern [regex]', `regex pattern for breaking change commits`)
.option('--ignore-commit-pattern [regex]', `pattern to ignore when parsing commits`)
.option('--starting-commit [hash]', `starting commit to use for changelog generation`)
.option('--tag-prefix [prefix]', `prefix used in version tags`)
.option('--include-branch [branch]', `one or more branches to include commits from, comma separated`, str => str.split(','))
.option('-i, --issue-url [url]', 'override url for issues, use {id} for issue id')
.option('--issue-pattern [regex]', 'override regex pattern for issues in commit messages')
.option('--breaking-pattern [regex]', 'regex pattern for breaking change commits')
.option('--ignore-commit-pattern [regex]', 'pattern to ignore when parsing commits')
.option('--starting-commit [hash]', 'starting commit to use for changelog generation')
.option('--tag-prefix [prefix]', 'prefix used in version tags')
.option('--include-branch [branch]', 'one or more branches to include commits from, comma separated', str => str.split(','))
.option('--release-summary', 'use tagged commit message body as release summary')
.version(version)
.parse(argv)
Expand Down

0 comments on commit 5c18eda

Please sign in to comment.