nx 22.0.0-canary.20251001-e28a97a → 22.0.0-canary.20251002-3bac124
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +11 -11
- package/src/ai/utils.d.ts +6 -5
- package/src/ai/utils.d.ts.map +1 -1
- package/src/ai/utils.js +14 -13
- package/src/command-line/configure-ai-agents/configure-ai-agents.d.ts.map +1 -1
- package/src/command-line/configure-ai-agents/configure-ai-agents.js +79 -74
- package/src/core/graph/main.js +1 -1
- package/src/core/graph/styles.js +1 -1
- package/src/native/index.d.ts +2 -2
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/utils/nx-console-prompt.d.ts.map +1 -1
- package/src/utils/nx-console-prompt.js +4 -1
package/src/core/graph/styles.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_nx_graph_client=self.webpackChunk_nx_graph_client||[]).push([[869],{
|
|
1
|
+
"use strict";(self.webpackChunk_nx_graph_client=self.webpackChunk_nx_graph_client||[]).push([[869],{7337:()=>{}},e=>{var n;n=7337,e(e.s=n)}]);
|
package/src/native/index.d.ts
CHANGED
|
@@ -251,9 +251,9 @@ export interface InputsInput {
|
|
|
251
251
|
projects?: string | Array<string>
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
-
export declare export declare function installNxConsole():
|
|
254
|
+
export declare export declare function installNxConsole(): boolean
|
|
255
255
|
|
|
256
|
-
export declare export declare function installNxConsoleForEditor(editor: SupportedEditor):
|
|
256
|
+
export declare export declare function installNxConsoleForEditor(editor: SupportedEditor): boolean
|
|
257
257
|
|
|
258
258
|
export const IS_WASM: boolean
|
|
259
259
|
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nx-console-prompt.d.ts","sourceRoot":"","sources":["../../../../../packages/nx/src/utils/nx-console-prompt.ts"],"names":[],"mappings":"AASA,wBAAsB,wBAAwB,
|
|
1
|
+
{"version":3,"file":"nx-console-prompt.d.ts","sourceRoot":"","sources":["../../../../../packages/nx/src/utils/nx-console-prompt.ts"],"names":[],"mappings":"AASA,wBAAsB,wBAAwB,kBA+B7C"}
|
|
@@ -26,7 +26,10 @@ async function ensureNxConsoleInstalled() {
|
|
|
26
26
|
preferences.setAutoInstallPreference(setting);
|
|
27
27
|
}
|
|
28
28
|
if (setting) {
|
|
29
|
-
(0, native_1.installNxConsole)();
|
|
29
|
+
const installed = (0, native_1.installNxConsole)();
|
|
30
|
+
if (installed) {
|
|
31
|
+
output_1.output.log({ title: 'Successfully installed Nx Console!' });
|
|
32
|
+
}
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
/**
|