@nx/devkit 21.3.0-canary.20250711-be6d35b → 21.3.0-canary.20250715-cf994df

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/devkit",
3
- "version": "21.3.0-canary.20250711-be6d35b",
3
+ "version": "21.3.0-canary.20250715-cf994df",
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
  "enquirer": "~2.3.6"
39
39
  },
40
40
  "peerDependencies": {
41
- "nx": "21.3.0-canary.20250711-be6d35b"
41
+ "nx": "21.3.0-canary.20250715-cf994df"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
@@ -89,7 +89,7 @@ async function load(path) {
89
89
  try {
90
90
  // Try using `require` first, which works for CJS modules.
91
91
  // Modules are CJS unless it is named `.mjs` or `package.json` sets type to "module".
92
- return loadCommonJS(path);
92
+ return await loadCommonJS(path);
93
93
  }
94
94
  catch (e) {
95
95
  if (e.code === 'ERR_REQUIRE_ESM') {