From 355dc54d8f6ac05e806fb4e36dc2c29d1c448aee Mon Sep 17 00:00:00 2001 From: John White <750350+johnhwhite@users.noreply.github.com> Date: Tue, 2 Aug 2022 13:31:39 -0400 Subject: [PATCH] =?UTF-8?q?fix(core):=20add=20-c=20as=20an=20alias=20for?= =?UTF-8?q?=20--configuration=20for=20`affected`=20and=20=E2=80=A6=20(#109?= =?UTF-8?q?93)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: John H White --- packages/nx/src/command-line/nx-commands.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/nx/src/command-line/nx-commands.ts b/packages/nx/src/command-line/nx-commands.ts index bba294a538..a359bb449a 100644 --- a/packages/nx/src/command-line/nx-commands.ts +++ b/packages/nx/src/command-line/nx-commands.ts @@ -438,6 +438,7 @@ function withAffectedOptions(yargs: yargs.Argv): yargs.Argv { .options('configuration', { describe: 'This is the configuration to use when performing tasks on projects', + alias: 'c', type: 'string', }) .options('only-failed', { @@ -498,6 +499,7 @@ function withRunManyOptions(yargs: yargs.Argv): yargs.Argv { .options('configuration', { describe: 'This is the configuration to use when performing tasks on projects', + alias: 'c', type: 'string', }) .options('only-failed', {