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.
This commit is contained in:
Jason Jean 2025-06-10 15:10:02 -04:00 committed by GitHub
parent 28b48ad1f3
commit c3c9ba39b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,13 +35,11 @@ export async function ensureNxConsoleInstalled() {
async function promptForNxConsoleInstallation(): Promise<boolean> {
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',
],
});