fix(core): add -c as an alias for --configuration for affected and … (#10993)

Co-authored-by: John H White <jhwhite@ithaca.edu>
This commit is contained in:
John White 2022-08-02 13:31:39 -04:00 committed by GitHub
parent 6e97f10b31
commit 355dc54d8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -438,6 +438,7 @@ function withAffectedOptions(yargs: yargs.Argv): yargs.Argv {
.options('configuration', { .options('configuration', {
describe: describe:
'This is the configuration to use when performing tasks on projects', 'This is the configuration to use when performing tasks on projects',
alias: 'c',
type: 'string', type: 'string',
}) })
.options('only-failed', { .options('only-failed', {
@ -498,6 +499,7 @@ function withRunManyOptions(yargs: yargs.Argv): yargs.Argv {
.options('configuration', { .options('configuration', {
describe: describe:
'This is the configuration to use when performing tasks on projects', 'This is the configuration to use when performing tasks on projects',
alias: 'c',
type: 'string', type: 'string',
}) })
.options('only-failed', { .options('only-failed', {