From c3c9ba39b3c8a49001511923fb43a9b91df08200 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Tue, 10 Jun 2025 15:10:02 -0400 Subject: [PATCH] fix(core): simplify Nx Console installation prompt (#31532) ## Current Behavior The Nx Console installation prompt has verbose and redundant wording that makes the message unclear. ## Expected Behavior The prompt is simplified and more concise, focusing on the key benefits of installing Nx Console while being more direct about what users will gain. ## Related Issue(s) This change improves the user experience when prompted to install Nx Console. --- packages/nx/src/utils/nx-console-prompt.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/nx/src/utils/nx-console-prompt.ts b/packages/nx/src/utils/nx-console-prompt.ts index 180a0d3fbc..7410c6984d 100644 --- a/packages/nx/src/utils/nx-console-prompt.ts +++ b/packages/nx/src/utils/nx-console-prompt.ts @@ -35,13 +35,11 @@ export async function ensureNxConsoleInstalled() { async function promptForNxConsoleInstallation(): Promise { try { output.log({ - title: - "Enhance your developer experience with Nx Console, Nx's official editor extension", + title: "Install Nx's official editor extension to:", bodyLines: [ '- Enable your AI assistant to do more by understanding your workspace', '- Add IntelliSense for Nx configuration files', '- Explore your workspace visually', - '- Generate code and execute tasks interactively', ], });