Skip to content

Commit

Permalink
chore: uppercase all command descrptions
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Jan 20, 2024
1 parent 03a5f3d commit 3cdc4ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cli/lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ program

const runCommand = program
.command('run <filename>')
.option('--output [filename]', 'output file', '-')
.option('--output [filename]', 'Output file', '-')
.option('--pipeline [iri]', 'IRI of the pipeline description')
.action(async (filename, options) => {
const combinedOptions = combine(options)
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/lib/cli/commonOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ function setVariable(str, all) {
return all.set(key, value)
}

export const variable = new Option('--variable <name=value>', 'variable key value pairs')
export const variable = new Option('--variable <name=value>', 'Variable key/value pairs')
.default(new Map())
.argParser(setVariable)

export const variableAll = new Option('--variable-all', 'Import all environment variables')

export const verbose = new Option('-v, --verbose', 'enable diagnostic console output')
export const verbose = new Option('-v, --verbose', 'Enable diagnostic console output')
.default(0)
.argParser((v, total) => ++total)

Expand Down

0 comments on commit 3cdc4ee

Please sign in to comment.