@nx/devkit 22.1.0-canary.20251023-59cf495 → 22.1.0-canary.20251024-7712d2a

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/internal.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export { signalToCode } from 'nx/src/devkit-internals';
2
+ //# sourceMappingURL=internal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"internal.d.ts","sourceRoot":"","sources":["../../../packages/devkit/internal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC"}
package/internal.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.signalToCode = void 0;
4
+ var devkit_internals_1 = require("nx/src/devkit-internals");
5
+ Object.defineProperty(exports, "signalToCode", { enumerable: true, get: function () { return devkit_internals_1.signalToCode; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/devkit",
3
- "version": "22.1.0-canary.20251023-59cf495",
3
+ "version": "22.1.0-canary.20251024-7712d2a",
4
4
  "private": false,
5
5
  "description": "The Nx Devkit is used to customize Nx for different technologies and use cases. It contains many utility functions for reading and writing files, updating configuration, working with Abstract Syntax Trees(ASTs), and more. Learn more about [extending Nx by leveraging the Nx Devkit](https://nx.dev/extending-nx/intro/getting-started) on our docs.",
6
6
  "repository": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "devDependencies": {
40
40
  "jest": "^29.4.1",
41
- "nx": "22.1.0-canary.20251023-59cf495"
41
+ "nx": "22.1.0-canary.20251024-7712d2a"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "nx": ">= 21 <= 23 || ^22.0.0-0"
@@ -93,7 +93,7 @@ function getDependencyVersionFromPackageJsonFromFileSystem(packageName, root = d
93
93
  // Resolve catalog reference if needed
94
94
  const manager = (0, catalog_1.getCatalogManager)(root);
95
95
  if (version && manager?.isCatalogReference(version)) {
96
- version = manager.resolveCatalogReference(packageName, version, root);
96
+ version = manager.resolveCatalogReference(root, packageName, version);
97
97
  }
98
98
  return version;
99
99
  }