From a950719c71157639ed0fd02f9a199a7106261544 Mon Sep 17 00:00:00 2001 From: Craigory Coppola Date: Tue, 14 Mar 2023 16:29:50 -0400 Subject: [PATCH] fix(core): help text shouldn't include .js file extensions on windows (#15677) --- 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 9c82f7100057d..9e928fc1ce7a9 100644 --- a/packages/nx/src/command-line/nx-commands.ts +++ b/packages/nx/src/command-line/nx-commands.ts @@ -409,6 +409,7 @@ export const commandsObject = yargs process.exit(0); }, }) + .scriptName('nx') .help() .version(nxVersion);