nx 22.4.0-canary.20260114-45f2ae3 → 22.4.0-canary.20260116-323554b

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/bin/init-local.js CHANGED
@@ -119,7 +119,7 @@ function shouldDelegateToAngularCLI() {
119
119
  }
120
120
  async function ensureNxConsoleInstalledViaDaemon() {
121
121
  // Only proceed if daemon is available
122
- if (!client_1.daemonClient.enabled()) {
122
+ if (!client_1.daemonClient.enabled() || !(await client_1.daemonClient.isServerAvailable())) {
123
123
  return;
124
124
  }
125
125
  // Get status from daemon
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "22.4.0-canary.20260114-45f2ae3",
3
+ "version": "22.4.0-canary.20260116-323554b",
4
4
  "private": false,
5
5
  "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
6
6
  "repository": {
@@ -83,16 +83,16 @@
83
83
  }
84
84
  },
85
85
  "optionalDependencies": {
86
- "@nx/nx-darwin-arm64": "22.4.0-canary.20260114-45f2ae3",
87
- "@nx/nx-darwin-x64": "22.4.0-canary.20260114-45f2ae3",
88
- "@nx/nx-freebsd-x64": "22.4.0-canary.20260114-45f2ae3",
89
- "@nx/nx-linux-arm-gnueabihf": "22.4.0-canary.20260114-45f2ae3",
90
- "@nx/nx-linux-arm64-gnu": "22.4.0-canary.20260114-45f2ae3",
91
- "@nx/nx-linux-arm64-musl": "22.4.0-canary.20260114-45f2ae3",
92
- "@nx/nx-linux-x64-gnu": "22.4.0-canary.20260114-45f2ae3",
93
- "@nx/nx-linux-x64-musl": "22.4.0-canary.20260114-45f2ae3",
94
- "@nx/nx-win32-arm64-msvc": "22.4.0-canary.20260114-45f2ae3",
95
- "@nx/nx-win32-x64-msvc": "22.4.0-canary.20260114-45f2ae3"
86
+ "@nx/nx-darwin-arm64": "22.4.0-canary.20260116-323554b",
87
+ "@nx/nx-darwin-x64": "22.4.0-canary.20260116-323554b",
88
+ "@nx/nx-freebsd-x64": "22.4.0-canary.20260116-323554b",
89
+ "@nx/nx-linux-arm-gnueabihf": "22.4.0-canary.20260116-323554b",
90
+ "@nx/nx-linux-arm64-gnu": "22.4.0-canary.20260116-323554b",
91
+ "@nx/nx-linux-arm64-musl": "22.4.0-canary.20260116-323554b",
92
+ "@nx/nx-linux-x64-gnu": "22.4.0-canary.20260116-323554b",
93
+ "@nx/nx-linux-x64-musl": "22.4.0-canary.20260116-323554b",
94
+ "@nx/nx-win32-arm64-msvc": "22.4.0-canary.20260116-323554b",
95
+ "@nx/nx-win32-x64-msvc": "22.4.0-canary.20260116-323554b"
96
96
  },
97
97
  "nx-migrations": {
98
98
  "migrations": "./migrations.json",
@@ -1 +1 @@
1
- {"version":3,"file":"get-agent-rules.d.ts","sourceRoot":"","sources":["../../../../../../packages/nx/src/ai/set-up-ai-agents/get-agent-rules.ts"],"names":[],"mappings":"AAAA,wBAAgB,aAAa,CAAC,OAAO,EAAE,OAAO,UAW7C"}
1
+ {"version":3,"file":"get-agent-rules.d.ts","sourceRoot":"","sources":["../../../../../../packages/nx/src/ai/set-up-ai-agents/get-agent-rules.ts"],"names":[],"mappings":"AAAA,wBAAgB,aAAa,CAAC,OAAO,EAAE,OAAO,UAY7C"}
@@ -11,5 +11,6 @@ function getAgentRules(nxCloud) {
11
11
  - When working in individual projects, use the \`nx_project_details\` mcp tool to analyze and understand the specific project structure and dependencies
12
12
  - For questions around nx configuration, best practices or if you're unsure, use the \`nx_docs\` tool to get relevant, up-to-date docs. Always use this instead of assuming things about nx configuration
13
13
  - If the user needs help with an Nx configuration or project graph error, use the \`nx_workspace\` tool to get any errors
14
+ - For Nx plugin best practices, check \`node_modules/@nx/<plugin>/PLUGIN.md\`. Not all plugins have this file - proceed without it if unavailable.
14
15
  `;
15
16
  }