We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 855b736 commit b48ef15Copy full SHA for b48ef15
packages/nx/src/utils/nx-console-prompt.ts
@@ -13,6 +13,15 @@ export async function ensureNxConsoleInstalled() {
13
14
const canInstallConsole = canInstallNxConsole();
15
16
+ // If user previously opted in but extension is not installed,
17
+ // they must have manually uninstalled it - respect that choice
18
+ if (setting === true && canInstallConsole) {
19
+ // User had auto-install enabled but extension is missing
20
+ // This means they manually uninstalled it
21
+ preferences.setAutoInstallPreference(false);
22
+ return;
23
+ }
24
+
25
// Noop
26
if (!canInstallConsole) {
27
return;
0 commit comments