From 3a63b19d386ee4e17c4af3ff9fcdc94472f7a744 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Fri, 4 Nov 2022 15:44:38 -0400 Subject: [PATCH] fix(core): fix -c alias for configuration (#13001) --- packages/nx/src/command-line/nx-commands.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/nx/src/command-line/nx-commands.ts b/packages/nx/src/command-line/nx-commands.ts index a25f1db975009..7066eb286fba0 100644 --- a/packages/nx/src/command-line/nx-commands.ts +++ b/packages/nx/src/command-line/nx-commands.ts @@ -438,6 +438,7 @@ function withRunOptions(yargs: yargs.Argv): yargs.Argv { describe: 'This is the configuration to use when performing tasks on projects', type: 'string', + alias: 'c', }) .option('prod', { describe: 'Use the production configuration',