From 5c18edaebff560e3e982a8d58ee7473f24b6be24 Mon Sep 17 00:00:00 2001 From: Pete Cook Date: Wed, 7 Nov 2018 15:53:42 +0000 Subject: [PATCH] Fix quote style --- src/run.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/run.js b/src/run.js index 46fc8a05..ea8f26bf 100644 --- a/src/run.js +++ b/src/run.js @@ -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)