nx 19.5.0-canary.20240711-2c4c2ae → 19.5.0-canary.20240713-6f50d9f

Sign up to get free protection for your applications and to get access to all the features.
Files changed (302) hide show
  1. package/bin/init-local.js +2 -3
  2. package/package.json +12 -12
  3. package/schemas/project-schema.json +26 -0
  4. package/src/adapter/angular-json.js +6 -6
  5. package/src/adapter/decorate-cli.js +1 -2
  6. package/src/adapter/ngcli-adapter.js +8 -8
  7. package/src/adapter/rxjs-for-await.js +5 -5
  8. package/src/command-line/add/add.js +2 -2
  9. package/src/command-line/affected/affected.js +2 -3
  10. package/src/command-line/connect/connect-to-nx-cloud.js +5 -6
  11. package/src/command-line/connect/view-logs.js +1 -2
  12. package/src/command-line/daemon/daemon.js +1 -2
  13. package/src/command-line/exec/exec.js +1 -2
  14. package/src/command-line/format/format.js +1 -2
  15. package/src/command-line/generate/generate.js +4 -5
  16. package/src/command-line/generate/generator-utils.js +2 -3
  17. package/src/command-line/graph/command-object.js +2 -2
  18. package/src/command-line/graph/graph.js +2 -3
  19. package/src/command-line/init/implementation/add-nx-to-monorepo.js +1 -2
  20. package/src/command-line/init/implementation/add-nx-to-nest.js +1 -2
  21. package/src/command-line/init/implementation/add-nx-to-npm-repo.js +1 -2
  22. package/src/command-line/init/implementation/angular/index.js +1 -2
  23. package/src/command-line/init/implementation/angular/integrated-workspace.js +1 -2
  24. package/src/command-line/init/implementation/angular/legacy-angular-versions.js +1 -2
  25. package/src/command-line/init/implementation/angular/standalone-workspace.js +1 -2
  26. package/src/command-line/init/implementation/dot-nx/add-nx-scripts.d.ts +1 -1
  27. package/src/command-line/init/implementation/dot-nx/add-nx-scripts.js +7 -7
  28. package/src/command-line/init/implementation/react/add-craco-commands-to-package-scripts.js +1 -2
  29. package/src/command-line/init/implementation/react/add-vite-commands-to-package-scripts.js +1 -2
  30. package/src/command-line/init/implementation/react/check-for-custom-webpack-setup.js +1 -2
  31. package/src/command-line/init/implementation/react/check-for-uncommitted-changes.js +1 -2
  32. package/src/command-line/init/implementation/react/clean-up-files.js +1 -2
  33. package/src/command-line/init/implementation/react/index.js +1 -2
  34. package/src/command-line/init/implementation/react/read-name-from-package-json.js +1 -2
  35. package/src/command-line/init/implementation/react/rename-js-to-jsx.js +1 -2
  36. package/src/command-line/init/implementation/react/tsconfig-setup.js +1 -2
  37. package/src/command-line/init/implementation/react/write-craco-config.js +1 -2
  38. package/src/command-line/init/implementation/react/write-vite-config.js +1 -2
  39. package/src/command-line/init/implementation/react/write-vite-index-html.js +1 -2
  40. package/src/command-line/init/implementation/utils.js +10 -11
  41. package/src/command-line/init/init-v1.js +1 -2
  42. package/src/command-line/init/init-v2.js +1 -2
  43. package/src/command-line/list/list.js +1 -2
  44. package/src/command-line/migrate/migrate.d.ts +1 -1
  45. package/src/command-line/migrate/migrate.js +5 -5
  46. package/src/command-line/new/new.js +1 -2
  47. package/src/command-line/release/changelog.js +3 -3
  48. package/src/command-line/release/config/config.js +3 -3
  49. package/src/command-line/release/config/filter-release-groups.js +1 -2
  50. package/src/command-line/release/config/version-plans.js +3 -4
  51. package/src/command-line/release/plan.js +2 -2
  52. package/src/command-line/release/publish.js +2 -2
  53. package/src/command-line/release/release.js +2 -2
  54. package/src/command-line/release/utils/batch-projects-by-generator-config.js +1 -2
  55. package/src/command-line/release/utils/exec-command.js +1 -2
  56. package/src/command-line/release/utils/git.js +11 -12
  57. package/src/command-line/release/utils/github.js +5 -6
  58. package/src/command-line/release/utils/launch-editor.js +1 -2
  59. package/src/command-line/release/utils/markdown.js +1 -2
  60. package/src/command-line/release/utils/print-changes.d.ts +0 -1
  61. package/src/command-line/release/utils/print-changes.js +2 -3
  62. package/src/command-line/release/utils/resolve-changelog-renderer.js +1 -2
  63. package/src/command-line/release/utils/resolve-nx-json-error-message.js +1 -2
  64. package/src/command-line/release/utils/resolve-semver-specifier.js +2 -3
  65. package/src/command-line/release/utils/semver.js +4 -5
  66. package/src/command-line/release/utils/shared.js +6 -6
  67. package/src/command-line/release/version.js +2 -2
  68. package/src/command-line/repair/repair.js +1 -2
  69. package/src/command-line/report/report.js +27 -19
  70. package/src/command-line/reset/reset.js +1 -2
  71. package/src/command-line/run/executor-utils.js +2 -3
  72. package/src/command-line/run/run-one.js +1 -2
  73. package/src/command-line/run/run.js +5 -6
  74. package/src/command-line/run-many/run-many.js +2 -3
  75. package/src/command-line/show/project.js +1 -2
  76. package/src/command-line/show/projects.js +1 -2
  77. package/src/command-line/watch/watch.js +2 -2
  78. package/src/command-line/yargs-utils/documentation.js +1 -2
  79. package/src/command-line/yargs-utils/shared-options.js +12 -13
  80. package/src/commands-runner/create-command-graph.js +1 -2
  81. package/src/commands-runner/get-command-projects.js +1 -2
  82. package/src/config/calculate-default-project-name.js +2 -3
  83. package/src/config/configuration.js +2 -2
  84. package/src/config/nx-json.js +2 -3
  85. package/src/config/project-graph.js +3 -3
  86. package/src/config/schema-utils.js +3 -4
  87. package/src/config/task-graph.d.ts +4 -0
  88. package/src/config/to-project-name.js +1 -2
  89. package/src/config/workspace-json-project-json.d.ts +5 -0
  90. package/src/core/graph/main.js +1 -1
  91. package/src/daemon/cache.js +6 -6
  92. package/src/daemon/client/client.d.ts +0 -2
  93. package/src/daemon/client/client.js +2 -2
  94. package/src/daemon/client/daemon-socket-messenger.d.ts +0 -1
  95. package/src/daemon/client/generate-help-output.js +1 -2
  96. package/src/daemon/is-on-daemon.js +1 -2
  97. package/src/daemon/message-types/get-context-file-data.js +2 -2
  98. package/src/daemon/message-types/get-files-in-directory.js +2 -2
  99. package/src/daemon/message-types/get-nx-workspace-files.js +2 -2
  100. package/src/daemon/message-types/glob.js +2 -2
  101. package/src/daemon/message-types/hash-glob.js +2 -2
  102. package/src/daemon/message-types/task-history.js +3 -3
  103. package/src/daemon/message-types/update-context-files.js +2 -2
  104. package/src/daemon/server/file-watching/changed-projects.js +1 -2
  105. package/src/daemon/server/file-watching/file-watcher-sockets.d.ts +0 -1
  106. package/src/daemon/server/file-watching/file-watcher-sockets.js +4 -4
  107. package/src/daemon/server/handle-context-file-data.js +1 -2
  108. package/src/daemon/server/handle-get-files-in-directory.js +1 -2
  109. package/src/daemon/server/handle-get-task-history.js +1 -2
  110. package/src/daemon/server/handle-glob.js +1 -2
  111. package/src/daemon/server/handle-hash-glob.js +1 -2
  112. package/src/daemon/server/handle-hash-tasks.js +1 -2
  113. package/src/daemon/server/handle-nx-workspace-files.js +1 -2
  114. package/src/daemon/server/handle-outputs-tracking.js +2 -3
  115. package/src/daemon/server/handle-process-in-background.js +1 -2
  116. package/src/daemon/server/handle-request-project-graph.js +1 -2
  117. package/src/daemon/server/handle-request-shutdown.d.ts +0 -1
  118. package/src/daemon/server/handle-request-shutdown.js +1 -2
  119. package/src/daemon/server/handle-write-task-runs-to-history.js +1 -2
  120. package/src/daemon/server/outputs-tracking.js +7 -8
  121. package/src/daemon/server/plugins.js +2 -3
  122. package/src/daemon/server/project-graph-incremental-recomputation.js +3 -3
  123. package/src/daemon/server/server.d.ts +0 -1
  124. package/src/daemon/server/server.js +2 -3
  125. package/src/daemon/server/shutdown-utils.d.ts +0 -1
  126. package/src/daemon/server/shutdown-utils.js +9 -9
  127. package/src/daemon/server/watcher.d.ts +0 -1
  128. package/src/daemon/server/watcher.js +3 -4
  129. package/src/daemon/socket-utils.js +3 -3
  130. package/src/daemon/tmp-dir.js +6 -6
  131. package/src/executors/noop/noop.impl.js +1 -1
  132. package/src/executors/run-commands/run-commands.impl.js +3 -3
  133. package/src/executors/run-script/run-script.impl.js +1 -1
  134. package/src/executors/utils/convert-nx-executor.js +1 -2
  135. package/src/generators/internal-utils/format-changed-files-with-prettier-if-available.js +1 -2
  136. package/src/generators/testing-utils/create-tree-with-empty-workspace.d.ts +1 -1
  137. package/src/generators/testing-utils/create-tree-with-empty-workspace.js +2 -3
  138. package/src/generators/testing-utils/create-tree.js +1 -2
  139. package/src/generators/tree.d.ts +0 -2
  140. package/src/generators/tree.js +3 -3
  141. package/src/generators/utils/glob.js +2 -3
  142. package/src/generators/utils/json.js +3 -4
  143. package/src/generators/utils/nx-json.js +2 -3
  144. package/src/generators/utils/project-configuration.js +7 -7
  145. package/src/hasher/create-task-hasher.js +1 -2
  146. package/src/hasher/file-hasher.js +2 -3
  147. package/src/hasher/hash-task.d.ts +0 -1
  148. package/src/hasher/hash-task.js +2 -3
  149. package/src/hasher/native-task-hasher-impl.d.ts +0 -1
  150. package/src/hasher/node-task-hasher-impl.d.ts +0 -1
  151. package/src/hasher/task-hasher.d.ts +0 -1
  152. package/src/hasher/task-hasher.js +10 -10
  153. package/src/migrations/update-15-0-0/migrate-to-inputs.js +1 -1
  154. package/src/migrations/update-15-0-0/prefix-outputs.js +1 -1
  155. package/src/migrations/update-16-0-0/remove-nrwl-cli.js +1 -1
  156. package/src/migrations/update-16-0-0/update-depends-on-to-tokens.js +1 -1
  157. package/src/migrations/update-16-0-0/update-nx-cloud-runner.js +1 -1
  158. package/src/migrations/update-16-2-0/remove-run-commands-output-path.js +1 -1
  159. package/src/migrations/update-16-8-0/escape-dollar-sign-env-variables.js +1 -1
  160. package/src/migrations/update-16-9-0/remove-project-name-and-root-format.js +1 -1
  161. package/src/migrations/update-17-0-0/move-cache-directory.js +1 -1
  162. package/src/migrations/update-17-0-0/rm-default-collection-npm-scope.js +1 -1
  163. package/src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options.js +1 -1
  164. package/src/migrations/update-17-2-0/move-default-base.js +1 -1
  165. package/src/migrations/update-17-3-0/nx-release-path.js +2 -3
  166. package/src/migrations/update-17-3-0/update-nxw.js +1 -1
  167. package/src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces.js +1 -1
  168. package/src/migrations/update-19-2-0/move-workspace-data-directory.js +3 -4
  169. package/src/migrations/update-19-2-4/set-project-name.js +1 -1
  170. package/src/native/assert-supported-platform.js +1 -2
  171. package/src/native/index.d.ts +1 -0
  172. package/src/native/native-file-cache-location.js +1 -2
  173. package/src/native/nx.wasm32-wasi.wasm +0 -0
  174. package/src/native/transform-objects.js +2 -2
  175. package/src/nx-cloud/debug-logger.js +1 -2
  176. package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.js +1 -2
  177. package/src/nx-cloud/resolution-helpers.js +1 -2
  178. package/src/nx-cloud/update-manager.js +2 -2
  179. package/src/nx-cloud/utilities/axios.js +1 -2
  180. package/src/nx-cloud/utilities/get-cloud-options.js +1 -2
  181. package/src/nx-cloud/utilities/url-shorten.js +8 -9
  182. package/src/plugins/js/hasher/hasher.js +1 -2
  183. package/src/plugins/js/lock-file/lock-file.js +6 -6
  184. package/src/plugins/js/lock-file/npm-parser.js +3 -4
  185. package/src/plugins/js/lock-file/pnpm-parser.js +3 -4
  186. package/src/plugins/js/lock-file/project-graph-pruning.js +1 -2
  187. package/src/plugins/js/lock-file/utils/package-json.js +2 -3
  188. package/src/plugins/js/lock-file/utils/pnpm-normalizer.js +5 -6
  189. package/src/plugins/js/lock-file/yarn-parser.js +3 -4
  190. package/src/plugins/js/package-json/create-package-json.js +2 -3
  191. package/src/plugins/js/project-graph/build-dependencies/build-dependencies.js +1 -2
  192. package/src/plugins/js/project-graph/build-dependencies/explicit-package-json-dependencies.js +1 -2
  193. package/src/plugins/js/project-graph/build-dependencies/explicit-project-dependencies.js +1 -2
  194. package/src/plugins/js/project-graph/build-dependencies/strip-source-code.js +1 -2
  195. package/src/plugins/js/project-graph/build-dependencies/target-project-locator.js +2 -2
  196. package/src/plugins/js/project-graph/build-nodes/build-npm-package-nodes.js +1 -2
  197. package/src/plugins/js/utils/config.js +1 -2
  198. package/src/plugins/js/utils/register.d.ts +1 -0
  199. package/src/plugins/js/utils/register.js +7 -8
  200. package/src/plugins/js/utils/resolve-relative-to-dir.js +1 -2
  201. package/src/plugins/js/utils/typescript.js +5 -6
  202. package/src/plugins/js/versions.d.ts +1 -1
  203. package/src/plugins/js/versions.js +1 -1
  204. package/src/plugins/package-json-workspaces/create-nodes.js +5 -5
  205. package/src/plugins/project-json/build-nodes/project-json.js +3 -3
  206. package/src/project-graph/affected/affected-project-graph.js +1 -2
  207. package/src/project-graph/build-project-graph.js +3 -4
  208. package/src/project-graph/error-types.js +11 -11
  209. package/src/project-graph/file-map-utils.js +4 -5
  210. package/src/project-graph/file-utils.d.ts +1 -1
  211. package/src/project-graph/file-utils.js +7 -7
  212. package/src/project-graph/nx-deps-cache.js +8 -8
  213. package/src/project-graph/operators.js +5 -5
  214. package/src/project-graph/plugins/internal-api.js +3 -3
  215. package/src/project-graph/plugins/isolation/index.js +1 -2
  216. package/src/project-graph/plugins/isolation/messaging.d.ts +0 -2
  217. package/src/project-graph/plugins/isolation/messaging.js +4 -5
  218. package/src/project-graph/plugins/isolation/plugin-pool.js +1 -2
  219. package/src/project-graph/plugins/loader.js +7 -7
  220. package/src/project-graph/plugins/utils.js +4 -5
  221. package/src/project-graph/project-graph-builder.js +2 -2
  222. package/src/project-graph/project-graph.js +7 -8
  223. package/src/project-graph/utils/build-all-workspace-files.js +1 -2
  224. package/src/project-graph/utils/find-project-for-path.js +4 -5
  225. package/src/project-graph/utils/implicit-project-dependencies.js +1 -2
  226. package/src/project-graph/utils/normalize-project-nodes.js +2 -3
  227. package/src/project-graph/utils/project-configuration-utils.js +27 -13
  228. package/src/project-graph/utils/retrieve-workspace-files.js +6 -7
  229. package/src/tasks-runner/create-task-graph.js +4 -3
  230. package/src/tasks-runner/forked-process-task-runner.d.ts +0 -1
  231. package/src/tasks-runner/init-tasks-runner.js +1 -2
  232. package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.js +1 -2
  233. package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.js +1 -2
  234. package/src/tasks-runner/life-cycles/formatting-utils.js +2 -3
  235. package/src/tasks-runner/life-cycles/pretty-time.js +1 -2
  236. package/src/tasks-runner/life-cycles/view-logs-utils.js +1 -2
  237. package/src/tasks-runner/pseudo-ipc.d.ts +0 -1
  238. package/src/tasks-runner/pseudo-terminal.d.ts +0 -1
  239. package/src/tasks-runner/pseudo-terminal.js +2 -2
  240. package/src/tasks-runner/run-command.js +4 -5
  241. package/src/tasks-runner/task-env.d.ts +0 -1
  242. package/src/tasks-runner/task-env.js +5 -6
  243. package/src/tasks-runner/task-graph-utils.js +2 -3
  244. package/src/tasks-runner/tasks-schedule.d.ts +1 -0
  245. package/src/tasks-runner/tasks-schedule.js +28 -4
  246. package/src/tasks-runner/utils.js +27 -27
  247. package/src/utils/ab-testing.js +2 -2
  248. package/src/utils/all-file-data.js +1 -2
  249. package/src/utils/assert-workspace-validity.js +1 -2
  250. package/src/utils/async-iterator.js +2 -3
  251. package/src/utils/cache-directory.js +2 -2
  252. package/src/utils/child-process.d.ts +0 -1
  253. package/src/utils/child-process.js +3 -3
  254. package/src/utils/chunkify.js +1 -2
  255. package/src/utils/code-frames.js +1 -2
  256. package/src/utils/collapse-expanded-outputs.js +1 -2
  257. package/src/utils/command-line-utils.js +5 -6
  258. package/src/utils/consume-messages-from-socket.js +1 -2
  259. package/src/utils/default-base.js +1 -2
  260. package/src/utils/dotenv.js +1 -2
  261. package/src/utils/exit-codes.d.ts +0 -1
  262. package/src/utils/exit-codes.js +1 -2
  263. package/src/utils/fileutils.d.ts +0 -1
  264. package/src/utils/fileutils.js +9 -10
  265. package/src/utils/find-matching-projects.d.ts +0 -4
  266. package/src/utils/find-matching-projects.js +5 -8
  267. package/src/utils/find-workspace-root.js +1 -2
  268. package/src/utils/get-package-name-from-import-path.js +1 -2
  269. package/src/utils/git-utils.js +4 -5
  270. package/src/utils/globs.d.ts +2 -0
  271. package/src/utils/globs.js +12 -2
  272. package/src/utils/ignore.js +4 -4
  273. package/src/utils/installation-directory.js +2 -3
  274. package/src/utils/is-ci.js +1 -2
  275. package/src/utils/json-diff.js +5 -5
  276. package/src/utils/json.js +3 -3
  277. package/src/utils/logger.js +2 -2
  278. package/src/utils/nx-cloud-utils.js +3 -4
  279. package/src/utils/nx-plugin.deprecated.js +1 -2
  280. package/src/utils/object-sort.js +1 -2
  281. package/src/utils/package-json.js +8 -9
  282. package/src/utils/package-manager.js +13 -14
  283. package/src/utils/params.js +14 -14
  284. package/src/utils/path.js +3 -4
  285. package/src/utils/plugins/community-plugins.js +1 -2
  286. package/src/utils/plugins/core-plugins.js +2 -3
  287. package/src/utils/plugins/installed-plugins.js +3 -4
  288. package/src/utils/plugins/local-plugins.js +2 -3
  289. package/src/utils/plugins/plugin-capabilities.js +2 -3
  290. package/src/utils/plugins/shared.js +1 -2
  291. package/src/utils/print-help.js +1 -2
  292. package/src/utils/project-graph-utils.js +4 -5
  293. package/src/utils/serializable-error.js +1 -2
  294. package/src/utils/serialize-overrides-into-command-line.js +1 -2
  295. package/src/utils/serialize-target.js +1 -2
  296. package/src/utils/split-target.js +2 -3
  297. package/src/utils/strip-indents.js +1 -2
  298. package/src/utils/task-history.js +3 -3
  299. package/src/utils/update-nxw.js +1 -2
  300. package/src/utils/workspace-configuration-check.js +1 -2
  301. package/src/utils/workspace-context.js +10 -11
  302. package/src/utils/workspace-root.js +3 -3
@@ -1,6 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.extractCachedFileData = exports.shouldRecomputeWholeGraph = exports.writeCache = exports.createProjectFileMapCache = exports.readProjectGraphCache = exports.readFileMapCache = exports.ensureCacheDirectory = exports.nxFileMap = exports.nxProjectGraph = void 0;
3
+ exports.nxFileMap = exports.nxProjectGraph = void 0;
4
+ exports.ensureCacheDirectory = ensureCacheDirectory;
5
+ exports.readFileMapCache = readFileMapCache;
6
+ exports.readProjectGraphCache = readProjectGraphCache;
7
+ exports.createProjectFileMapCache = createProjectFileMapCache;
8
+ exports.writeCache = writeCache;
9
+ exports.shouldRecomputeWholeGraph = shouldRecomputeWholeGraph;
10
+ exports.extractCachedFileData = extractCachedFileData;
4
11
  const fs_1 = require("fs");
5
12
  const fs_extra_1 = require("fs-extra");
6
13
  const path_1 = require("path");
@@ -32,7 +39,6 @@ function ensureCacheDirectory() {
32
39
  }
33
40
  }
34
41
  }
35
- exports.ensureCacheDirectory = ensureCacheDirectory;
36
42
  function readFileMapCache() {
37
43
  perf_hooks_1.performance.mark('read cache:start');
38
44
  ensureCacheDirectory();
@@ -50,7 +56,6 @@ function readFileMapCache() {
50
56
  perf_hooks_1.performance.measure('read cache', 'read cache:start', 'read cache:end');
51
57
  return data ?? null;
52
58
  }
53
- exports.readFileMapCache = readFileMapCache;
54
59
  function readProjectGraphCache() {
55
60
  perf_hooks_1.performance.mark('read project-graph:start');
56
61
  ensureCacheDirectory();
@@ -68,7 +73,6 @@ function readProjectGraphCache() {
68
73
  perf_hooks_1.performance.measure('read cache', 'read project-graph:start', 'read project-graph:end');
69
74
  return data ?? null;
70
75
  }
71
- exports.readProjectGraphCache = readProjectGraphCache;
72
76
  function createProjectFileMapCache(nxJson, packageJsonDeps, fileMap, tsConfig) {
73
77
  const nxJsonPlugins = getNxJsonPluginsData(nxJson, packageJsonDeps);
74
78
  const newValue = {
@@ -83,7 +87,6 @@ function createProjectFileMapCache(nxJson, packageJsonDeps, fileMap, tsConfig) {
83
87
  };
84
88
  return newValue;
85
89
  }
86
- exports.createProjectFileMapCache = createProjectFileMapCache;
87
90
  function writeCache(cache, projectGraph) {
88
91
  perf_hooks_1.performance.mark('write cache:start');
89
92
  let retry = 1;
@@ -117,7 +120,6 @@ function writeCache(cache, projectGraph) {
117
120
  perf_hooks_1.performance.mark('write cache:end');
118
121
  perf_hooks_1.performance.measure('write cache', 'write cache:start', 'write cache:end');
119
122
  }
120
- exports.writeCache = writeCache;
121
123
  function shouldRecomputeWholeGraph(cache, packageJsonDeps, projects, nxJson, tsConfig) {
122
124
  if (cache.version !== '6.0') {
123
125
  return true;
@@ -153,7 +155,6 @@ function shouldRecomputeWholeGraph(cache, packageJsonDeps, projects, nxJson, tsC
153
155
  }
154
156
  return false;
155
157
  }
156
- exports.shouldRecomputeWholeGraph = shouldRecomputeWholeGraph;
157
158
  /*
158
159
  This can only be invoked when the list of projects is either the same
159
160
  or new projects have been added, so every project in the cache has a corresponding
@@ -178,7 +179,6 @@ function extractCachedFileData(fileMap, c) {
178
179
  cachedFileData,
179
180
  };
180
181
  }
181
- exports.extractCachedFileData = extractCachedFileData;
182
182
  function processNonProjectFiles(cachedFiles, nonProjectFiles, filesToProcess, cachedFileData) {
183
183
  const cachedHashMap = new Map(cachedFiles.map((f) => [f.file, f]));
184
184
  for (const f of nonProjectFiles) {
@@ -1,6 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.withDeps = exports.pruneExternalNodes = exports.isNpmProject = exports.filterNodes = exports.reverse = void 0;
3
+ exports.pruneExternalNodes = void 0;
4
+ exports.reverse = reverse;
5
+ exports.filterNodes = filterNodes;
6
+ exports.isNpmProject = isNpmProject;
7
+ exports.withDeps = withDeps;
4
8
  const reverseMemo = new Map();
5
9
  /**
6
10
  * Returns a new project graph where all the edges are reversed.
@@ -40,7 +44,6 @@ function reverse(graph) {
40
44
  reverseMemo.set(result, graph);
41
45
  return result;
42
46
  }
43
- exports.reverse = reverse;
44
47
  function filterNodes(predicate) {
45
48
  return (original) => {
46
49
  const graph = { nodes: {}, dependencies: {} };
@@ -62,11 +65,9 @@ function filterNodes(predicate) {
62
65
  return graph;
63
66
  };
64
67
  }
65
- exports.filterNodes = filterNodes;
66
68
  function isNpmProject(project) {
67
69
  return project?.type === 'npm';
68
70
  }
69
- exports.isNpmProject = isNpmProject;
70
71
  exports.pruneExternalNodes = filterNodes();
71
72
  function withDeps(original, subsetNodes) {
72
73
  const res = { nodes: {}, dependencies: {} };
@@ -111,4 +112,3 @@ function withDeps(original, subsetNodes) {
111
112
  });
112
113
  }
113
114
  }
114
- exports.withDeps = withDeps;
@@ -2,7 +2,9 @@
2
2
  // This file contains the bits and bobs of the internal API for loading and interacting with Nx plugins.
3
3
  // For the public API, used by plugin authors, see `./public-api.ts`.
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.getDefaultPlugins = exports.loadNxPlugins = exports.nxPluginCache = exports.LoadedNxPlugin = void 0;
5
+ exports.nxPluginCache = exports.LoadedNxPlugin = void 0;
6
+ exports.loadNxPlugins = loadNxPlugins;
7
+ exports.getDefaultPlugins = getDefaultPlugins;
6
8
  const path_1 = require("path");
7
9
  const workspace_root_1 = require("../../utils/workspace-root");
8
10
  const angular_json_1 = require("../../adapter/angular-json");
@@ -96,7 +98,6 @@ async function loadNxPlugins(plugins, root = workspace_root_1.workspaceRoot) {
96
98
  performance.measure('loadNxPlugins', 'loadNxPlugins:start', 'loadNxPlugins:end');
97
99
  return ret;
98
100
  }
99
- exports.loadNxPlugins = loadNxPlugins;
100
101
  async function normalizePlugins(plugins, root) {
101
102
  plugins ??= [];
102
103
  return [
@@ -118,4 +119,3 @@ async function getDefaultPlugins(root) {
118
119
  (0, path_1.join)(__dirname, '../../plugins/project-json/build-nodes/project-json'),
119
120
  ];
120
121
  }
121
- exports.getDefaultPlugins = getDefaultPlugins;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.loadNxPluginInIsolation = void 0;
3
+ exports.loadNxPluginInIsolation = loadNxPluginInIsolation;
4
4
  const workspace_root_1 = require("../../../utils/workspace-root");
5
5
  const plugin_pool_1 = require("./plugin-pool");
6
6
  async function loadNxPluginInIsolation(plugin, root = workspace_root_1.workspaceRoot) {
@@ -12,4 +12,3 @@ async function loadNxPluginInIsolation(plugin, root = workspace_root_1.workspace
12
12
  },
13
13
  ];
14
14
  }
15
- exports.loadNxPluginInIsolation = loadNxPluginInIsolation;
@@ -1,5 +1,3 @@
1
- /// <reference types="node" />
2
- /// <reference types="node" />
3
1
  import { ProjectGraph, ProjectGraphProcessorContext } from '../../../config/project-graph';
4
2
  import { PluginConfiguration } from '../../../config/nx-json';
5
3
  import { CreateDependenciesContext, CreateMetadataContext, CreateNodesContextV2 } from '../public-api';
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.sendMessageOverSocket = exports.consumeMessage = exports.isPluginWorkerResult = exports.isPluginWorkerMessage = void 0;
3
+ exports.isPluginWorkerMessage = isPluginWorkerMessage;
4
+ exports.isPluginWorkerResult = isPluginWorkerResult;
5
+ exports.consumeMessage = consumeMessage;
6
+ exports.sendMessageOverSocket = sendMessageOverSocket;
4
7
  function isPluginWorkerMessage(message) {
5
8
  return (typeof message === 'object' &&
6
9
  'type' in message &&
@@ -13,7 +16,6 @@ function isPluginWorkerMessage(message) {
13
16
  'createMetadata',
14
17
  ].includes(message.type));
15
18
  }
16
- exports.isPluginWorkerMessage = isPluginWorkerMessage;
17
19
  function isPluginWorkerResult(message) {
18
20
  return (typeof message === 'object' &&
19
21
  'type' in message &&
@@ -26,7 +28,6 @@ function isPluginWorkerResult(message) {
26
28
  'createMetadataResult',
27
29
  ].includes(message.type));
28
30
  }
29
- exports.isPluginWorkerResult = isPluginWorkerResult;
30
31
  // Takes a message and a map of handlers and calls the appropriate handler
31
32
  // type safe and requires all handlers to be handled
32
33
  async function consumeMessage(socket, raw, handlers) {
@@ -39,8 +40,6 @@ async function consumeMessage(socket, raw, handlers) {
39
40
  }
40
41
  }
41
42
  }
42
- exports.consumeMessage = consumeMessage;
43
43
  function sendMessageOverSocket(socket, message) {
44
44
  socket.write(JSON.stringify(message) + String.fromCodePoint(4));
45
45
  }
46
- exports.sendMessageOverSocket = sendMessageOverSocket;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.loadRemoteNxPlugin = void 0;
3
+ exports.loadRemoteNxPlugin = loadRemoteNxPlugin;
4
4
  const child_process_1 = require("child_process");
5
5
  const path = require("path");
6
6
  const net_1 = require("net");
@@ -48,7 +48,6 @@ async function loadRemoteNxPlugin(plugin, root) {
48
48
  nxPluginWorkerCache.set(cacheKey, pluginPromise);
49
49
  return [pluginPromise, cleanupFunction];
50
50
  }
51
- exports.loadRemoteNxPlugin = loadRemoteNxPlugin;
52
51
  function shutdownPluginWorker(worker) {
53
52
  // Clears the plugin cache so no refs to the workers are held
54
53
  internal_api_1.nxPluginCache.clear();
@@ -1,7 +1,13 @@
1
1
  "use strict";
2
2
  // This file contains methods and utilities that should **only** be used by the plugin worker.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.loadNxPluginAsync = exports.loadNxPlugin = exports.getPluginPathAndName = exports.registerPluginTSTranspiler = exports.unregisterPluginTSTranspiler = exports.resolveLocalNxPlugin = exports.readPluginPackageJson = void 0;
4
+ exports.unregisterPluginTSTranspiler = void 0;
5
+ exports.readPluginPackageJson = readPluginPackageJson;
6
+ exports.resolveLocalNxPlugin = resolveLocalNxPlugin;
7
+ exports.registerPluginTSTranspiler = registerPluginTSTranspiler;
8
+ exports.getPluginPathAndName = getPluginPathAndName;
9
+ exports.loadNxPlugin = loadNxPlugin;
10
+ exports.loadNxPluginAsync = loadNxPluginAsync;
5
11
  const posix_1 = require("node:path/posix");
6
12
  const installation_directory_1 = require("../../utils/installation-directory");
7
13
  const package_json_1 = require("../../utils/package-json");
@@ -44,11 +50,9 @@ function readPluginPackageJson(pluginName, projects, paths = (0, installation_di
44
50
  throw e;
45
51
  }
46
52
  }
47
- exports.readPluginPackageJson = readPluginPackageJson;
48
53
  function resolveLocalNxPlugin(importPath, projects, root = workspace_root_1.workspaceRoot) {
49
54
  return lookupLocalPlugin(importPath, projects, root);
50
55
  }
51
- exports.resolveLocalNxPlugin = resolveLocalNxPlugin;
52
56
  exports.unregisterPluginTSTranspiler = null;
53
57
  /**
54
58
  * Register swc-node or ts-node if they are not currently registered
@@ -78,7 +82,6 @@ function registerPluginTSTranspiler() {
78
82
  cleanupFns.forEach((fn) => fn?.());
79
83
  };
80
84
  }
81
- exports.registerPluginTSTranspiler = registerPluginTSTranspiler;
82
85
  function lookupLocalPlugin(importPath, projects, root = workspace_root_1.workspaceRoot) {
83
86
  const projectConfig = findNxProjectForImportPath(importPath, projects, root);
84
87
  if (!projectConfig) {
@@ -173,7 +176,6 @@ function getPluginPathAndName(moduleName, paths, projects, root) {
173
176
  : { name: moduleName };
174
177
  return { pluginPath, name };
175
178
  }
176
- exports.getPluginPathAndName = getPluginPathAndName;
177
179
  let projectsWithoutInference;
178
180
  function loadNxPlugin(plugin, root) {
179
181
  return [
@@ -181,7 +183,6 @@ function loadNxPlugin(plugin, root) {
181
183
  () => { },
182
184
  ];
183
185
  }
184
- exports.loadNxPlugin = loadNxPlugin;
185
186
  async function loadNxPluginAsync(pluginConfiguration, paths, root) {
186
187
  const moduleName = typeof pluginConfiguration === 'string'
187
188
  ? pluginConfiguration
@@ -207,7 +208,6 @@ async function loadNxPluginAsync(pluginConfiguration, paths, root) {
207
208
  throw new error_types_1.LoadPluginError(moduleName, e);
208
209
  }
209
210
  }
210
- exports.loadNxPluginAsync = loadNxPluginAsync;
211
211
  async function importPluginModule(pluginPath) {
212
212
  const m = await Promise.resolve(`${pluginPath}`).then(s => require(s));
213
213
  if (m.default &&
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createNodesFromFiles = exports.normalizeNxPlugin = exports.isNxPluginV1 = exports.isNxPluginV2 = void 0;
3
+ exports.isNxPluginV2 = isNxPluginV2;
4
+ exports.isNxPluginV1 = isNxPluginV1;
5
+ exports.normalizeNxPlugin = normalizeNxPlugin;
6
+ exports.createNodesFromFiles = createNodesFromFiles;
4
7
  const node_path_1 = require("node:path");
5
8
  const to_project_name_1 = require("../../config/to-project-name");
6
9
  const globs_1 = require("../../utils/globs");
@@ -8,11 +11,9 @@ const error_types_1 = require("../error-types");
8
11
  function isNxPluginV2(plugin) {
9
12
  return 'createNodes' in plugin || 'createDependencies' in plugin;
10
13
  }
11
- exports.isNxPluginV2 = isNxPluginV2;
12
14
  function isNxPluginV1(plugin) {
13
15
  return 'processProjectGraph' in plugin || 'projectFilePatterns' in plugin;
14
16
  }
15
- exports.isNxPluginV1 = isNxPluginV1;
16
17
  function normalizeNxPlugin(plugin) {
17
18
  if (isNxPluginV2(plugin)) {
18
19
  return plugin;
@@ -38,7 +39,6 @@ function normalizeNxPlugin(plugin) {
38
39
  }
39
40
  return plugin;
40
41
  }
41
- exports.normalizeNxPlugin = normalizeNxPlugin;
42
42
  async function createNodesFromFiles(createNodes, configFiles, options, context) {
43
43
  const results = [];
44
44
  const errors = [];
@@ -59,4 +59,3 @@ async function createNodesFromFiles(createNodes, configFiles, options, context)
59
59
  }
60
60
  return results;
61
61
  }
62
- exports.createNodesFromFiles = createNodesFromFiles;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.validateDependency = exports.ProjectGraphBuilder = void 0;
3
+ exports.ProjectGraphBuilder = void 0;
4
+ exports.validateDependency = validateDependency;
4
5
  /**
5
6
  * Builder for adding nodes and dependencies to a {@link ProjectGraph}
6
7
  */
@@ -312,7 +313,6 @@ function validateDependency(dependency, ctx) {
312
313
  }
313
314
  validateCommonDependencyRules(dependency, ctx);
314
315
  }
315
- exports.validateDependency = validateDependency;
316
316
  function validateCommonDependencyRules(d, { externalNodes, projects, fileMap }) {
317
317
  if (!projects[d.source] && !externalNodes[d.source]) {
318
318
  throw new Error(`Source project does not exist: ${d.source}`);
@@ -1,6 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createProjectGraphAndSourceMapsAsync = exports.createProjectGraphAsync = exports.handleProjectGraphError = exports.buildProjectGraphAndSourceMapsWithoutDaemon = exports.readProjectsConfigurationFromProjectGraph = exports.readCachedProjectConfiguration = exports.readCachedProjectGraph = void 0;
3
+ exports.readCachedProjectGraph = readCachedProjectGraph;
4
+ exports.readCachedProjectConfiguration = readCachedProjectConfiguration;
5
+ exports.readProjectsConfigurationFromProjectGraph = readProjectsConfigurationFromProjectGraph;
6
+ exports.buildProjectGraphAndSourceMapsWithoutDaemon = buildProjectGraphAndSourceMapsWithoutDaemon;
7
+ exports.handleProjectGraphError = handleProjectGraphError;
8
+ exports.createProjectGraphAsync = createProjectGraphAsync;
9
+ exports.createProjectGraphAndSourceMapsAsync = createProjectGraphAndSourceMapsAsync;
4
10
  const perf_hooks_1 = require("perf_hooks");
5
11
  const nx_json_1 = require("../config/nx-json");
6
12
  const client_1 = require("../daemon/client/client");
@@ -41,7 +47,6 @@ function readCachedProjectGraph() {
41
47
  }
42
48
  return projectGraphCache;
43
49
  }
44
- exports.readCachedProjectGraph = readCachedProjectGraph;
45
50
  function readCachedProjectConfiguration(projectName) {
46
51
  const graph = readCachedProjectGraph();
47
52
  const node = graph.nodes[projectName];
@@ -52,7 +57,6 @@ function readCachedProjectConfiguration(projectName) {
52
57
  throw new Error(`Cannot find project: '${projectName}' in your workspace.`);
53
58
  }
54
59
  }
55
- exports.readCachedProjectConfiguration = readCachedProjectConfiguration;
56
60
  /**
57
61
  * Get the {@link ProjectsConfigurations} from the {@link ProjectGraph}
58
62
  */
@@ -65,7 +69,6 @@ function readProjectsConfigurationFromProjectGraph(projectGraph) {
65
69
  version: 2,
66
70
  };
67
71
  }
68
- exports.readProjectsConfigurationFromProjectGraph = readProjectsConfigurationFromProjectGraph;
69
72
  async function buildProjectGraphAndSourceMapsWithoutDaemon() {
70
73
  global.NX_GRAPH_CREATION = true;
71
74
  const nxJson = (0, nx_json_1.readNxJson)();
@@ -135,7 +138,6 @@ async function buildProjectGraphAndSourceMapsWithoutDaemon() {
135
138
  return { projectGraph, sourceMaps };
136
139
  }
137
140
  }
138
- exports.buildProjectGraphAndSourceMapsWithoutDaemon = buildProjectGraphAndSourceMapsWithoutDaemon;
139
141
  function handleProjectGraphError(opts, e) {
140
142
  if (opts.exitOnError) {
141
143
  const isVerbose = process.env.NX_VERBOSE_LOGGING === 'true';
@@ -168,7 +170,6 @@ function handleProjectGraphError(opts, e) {
168
170
  throw e;
169
171
  }
170
172
  }
171
- exports.handleProjectGraphError = handleProjectGraphError;
172
173
  /**
173
174
  * Computes and returns a ProjectGraph.
174
175
  *
@@ -197,7 +198,6 @@ async function createProjectGraphAsync(opts = {
197
198
  const projectGraphAndSourceMaps = await createProjectGraphAndSourceMapsAsync(opts);
198
199
  return projectGraphAndSourceMaps.projectGraph;
199
200
  }
200
- exports.createProjectGraphAsync = createProjectGraphAsync;
201
201
  async function createProjectGraphAndSourceMapsAsync(opts = {
202
202
  exitOnError: false,
203
203
  resetDaemonClient: false,
@@ -259,4 +259,3 @@ async function createProjectGraphAndSourceMapsAsync(opts = {
259
259
  }
260
260
  }
261
261
  }
262
- exports.createProjectGraphAndSourceMapsAsync = createProjectGraphAndSourceMapsAsync;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.buildAllWorkspaceFiles = void 0;
3
+ exports.buildAllWorkspaceFiles = buildAllWorkspaceFiles;
4
4
  const perf_hooks_1 = require("perf_hooks");
5
5
  function buildAllWorkspaceFiles(projectFileMap, globalFiles) {
6
6
  perf_hooks_1.performance.mark('get-all-workspace-files:start');
@@ -12,4 +12,3 @@ function buildAllWorkspaceFiles(projectFileMap, globalFiles) {
12
12
  perf_hooks_1.performance.measure('get-all-workspace-files', 'get-all-workspace-files:start', 'get-all-workspace-files:end');
13
13
  return fileData;
14
14
  }
15
- exports.buildAllWorkspaceFiles = buildAllWorkspaceFiles;
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.normalizeProjectRoot = exports.findProjectForPath = exports.createProjectRootMappings = exports.createProjectRootMappingsFromProjectConfigurations = void 0;
3
+ exports.createProjectRootMappingsFromProjectConfigurations = createProjectRootMappingsFromProjectConfigurations;
4
+ exports.createProjectRootMappings = createProjectRootMappings;
5
+ exports.findProjectForPath = findProjectForPath;
6
+ exports.normalizeProjectRoot = normalizeProjectRoot;
4
7
  const path_1 = require("path");
5
8
  const path_2 = require("../../utils/path");
6
9
  /**
@@ -14,7 +17,6 @@ function createProjectRootMappingsFromProjectConfigurations(projects) {
14
17
  }
15
18
  return projectRootMappings;
16
19
  }
17
- exports.createProjectRootMappingsFromProjectConfigurations = createProjectRootMappingsFromProjectConfigurations;
18
20
  /**
19
21
  * This creates a map of project roots to project names to easily look up the project of a file
20
22
  * @param nodes This is the nodes from the project graph
@@ -27,7 +29,6 @@ function createProjectRootMappings(nodes) {
27
29
  }
28
30
  return projectRootMappings;
29
31
  }
30
- exports.createProjectRootMappings = createProjectRootMappings;
31
32
  /**
32
33
  * Locates a project in projectRootMap based on a file within it
33
34
  * @param filePath path that is inside of projectName. This should be relative from the workspace root
@@ -48,9 +49,7 @@ function findProjectForPath(filePath, projectRootMap) {
48
49
  }
49
50
  return projectRootMap.get(currentPath);
50
51
  }
51
- exports.findProjectForPath = findProjectForPath;
52
52
  function normalizeProjectRoot(root) {
53
53
  root = root === '' ? '.' : root;
54
54
  return root && root.endsWith('/') ? root.substring(0, root.length - 1) : root;
55
55
  }
56
- exports.normalizeProjectRoot = normalizeProjectRoot;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.applyImplicitDependencies = void 0;
3
+ exports.applyImplicitDependencies = applyImplicitDependencies;
4
4
  function applyImplicitDependencies(projects, builder) {
5
5
  Object.keys(projects).forEach((source) => {
6
6
  const p = projects[source];
@@ -16,4 +16,3 @@ function applyImplicitDependencies(projects, builder) {
16
16
  }
17
17
  });
18
18
  }
19
- exports.applyImplicitDependencies = applyImplicitDependencies;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.normalizeImplicitDependencies = exports.normalizeProjectNodes = void 0;
3
+ exports.normalizeProjectNodes = normalizeProjectNodes;
4
+ exports.normalizeImplicitDependencies = normalizeImplicitDependencies;
4
5
  const find_matching_projects_1 = require("../../utils/find-matching-projects");
5
6
  async function normalizeProjectNodes({ projects }, builder) {
6
7
  // Sorting projects by name to make sure that the order of projects in the graph is deterministic.
@@ -56,7 +57,6 @@ async function normalizeProjectNodes({ projects }, builder) {
56
57
  });
57
58
  });
58
59
  }
59
- exports.normalizeProjectNodes = normalizeProjectNodes;
60
60
  function normalizeImplicitDependencies(source, implicitDependencies, projects) {
61
61
  if (!implicitDependencies?.length) {
62
62
  return implicitDependencies ?? [];
@@ -86,4 +86,3 @@ function normalizeImplicitDependencies(source, implicitDependencies, projects) {
86
86
  // detected by createDependencies.
87
87
  return deps.concat(alwaysIgnoredDeps.map((x) => '!' + x));
88
88
  }
89
- exports.normalizeImplicitDependencies = normalizeImplicitDependencies;
@@ -1,6 +1,16 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.normalizeTarget = exports.readTargetDefaultsForTarget = exports.resolveNxTokensInOptions = exports.isCompatibleTarget = exports.mergeTargetConfigurations = exports.mergeTargetDefaultWithTargetDefinition = exports.validateProject = exports.readProjectConfigurationsFromRootMap = exports.createProjectConfigurations = exports.mergeMetadata = exports.mergeProjectConfigurationIntoRootMap = void 0;
3
+ exports.mergeProjectConfigurationIntoRootMap = mergeProjectConfigurationIntoRootMap;
4
+ exports.mergeMetadata = mergeMetadata;
5
+ exports.createProjectConfigurations = createProjectConfigurations;
6
+ exports.readProjectConfigurationsFromRootMap = readProjectConfigurationsFromRootMap;
7
+ exports.validateProject = validateProject;
8
+ exports.mergeTargetDefaultWithTargetDefinition = mergeTargetDefaultWithTargetDefinition;
9
+ exports.mergeTargetConfigurations = mergeTargetConfigurations;
10
+ exports.isCompatibleTarget = isCompatibleTarget;
11
+ exports.resolveNxTokensInOptions = resolveNxTokensInOptions;
12
+ exports.readTargetDefaultsForTarget = readTargetDefaultsForTarget;
13
+ exports.normalizeTarget = normalizeTarget;
4
14
  const logger_1 = require("../../utils/logger");
5
15
  const fileutils_1 = require("../../utils/fileutils");
6
16
  const workspace_root_1 = require("../../utils/workspace-root");
@@ -8,6 +18,7 @@ const minimatch_1 = require("minimatch");
8
18
  const path_1 = require("path");
9
19
  const perf_hooks_1 = require("perf_hooks");
10
20
  const error_types_1 = require("../error-types");
21
+ const globs_1 = require("../../utils/globs");
11
22
  function mergeProjectConfigurationIntoRootMap(projectRootMap, project, configurationSourceMaps, sourceInformation,
12
23
  // This function is used when reading project configuration
13
24
  // in generators, where we don't want to do this.
@@ -132,7 +143,6 @@ skipTargetNormalization) {
132
143
  projectRootMap[updatedProjectConfiguration.root] =
133
144
  updatedProjectConfiguration;
134
145
  }
135
- exports.mergeProjectConfigurationIntoRootMap = mergeProjectConfigurationIntoRootMap;
136
146
  function mergeMetadata(sourceMap, sourceInformation, baseSourceMapPath, metadata, matchingMetadata) {
137
147
  const result = {
138
148
  ...(matchingMetadata ?? {}),
@@ -202,7 +212,6 @@ function mergeMetadata(sourceMap, sourceInformation, baseSourceMapPath, metadata
202
212
  }
203
213
  return result;
204
214
  }
205
- exports.mergeMetadata = mergeMetadata;
206
215
  /**
207
216
  * Transforms a list of project paths into a map of project configurations.
208
217
  *
@@ -278,7 +287,6 @@ plugins) {
278
287
  }
279
288
  });
280
289
  }
281
- exports.createProjectConfigurations = createProjectConfigurations;
282
290
  function mergeCreateNodesResults(results, nxJsonConfiguration, errors) {
283
291
  perf_hooks_1.performance.mark('createNodes:merge - start');
284
292
  const projectRootMap = {};
@@ -389,7 +397,6 @@ function readProjectConfigurationsFromRootMap(projectRootMap) {
389
397
  }
390
398
  return projects;
391
399
  }
392
- exports.readProjectConfigurationsFromRootMap = readProjectConfigurationsFromRootMap;
393
400
  function validateAndNormalizeProjectRootMap(projectRootMap, nxJsonConfiguration, sourceMaps = {}) {
394
401
  // Name -> Project, used to validate that all projects have unique names
395
402
  const projects = {};
@@ -480,7 +487,6 @@ knownProjects) {
480
487
  throw new error_types_1.ProjectWithExistingNameError(project.name, project.root);
481
488
  }
482
489
  }
483
- exports.validateProject = validateProject;
484
490
  function targetDefaultShouldBeApplied(key, sourceMap) {
485
491
  const sourceInfo = sourceMap[key];
486
492
  if (!sourceInfo) {
@@ -549,7 +555,6 @@ function mergeTargetDefaultWithTargetDefinition(targetName, project, targetDefau
549
555
  }
550
556
  return result;
551
557
  }
552
- exports.mergeTargetDefaultWithTargetDefinition = mergeTargetDefaultWithTargetDefinition;
553
558
  /**
554
559
  * Merges two targets.
555
560
  *
@@ -606,7 +611,6 @@ function mergeTargetConfigurations(target, baseTarget, projectConfigSourceMap, s
606
611
  }
607
612
  return result;
608
613
  }
609
- exports.mergeTargetConfigurations = mergeTargetConfigurations;
610
614
  /**
611
615
  * Checks if targets options are compatible - used when merging configurations
612
616
  * to avoid merging options for @nx/js:tsc into something like @nx/webpack:webpack.
@@ -639,7 +643,6 @@ function isCompatibleTarget(a, b) {
639
643
  }
640
644
  return true;
641
645
  }
642
- exports.isCompatibleTarget = isCompatibleTarget;
643
646
  function mergeConfigurations(newConfigurations, baseConfigurations, projectConfigSourceMap, sourceInformation, targetIdentifier) {
644
647
  const mergedConfigurations = {};
645
648
  const configurations = new Set([
@@ -697,7 +700,6 @@ function resolveNxTokensInOptions(object, project, key) {
697
700
  }
698
701
  return result;
699
702
  }
700
- exports.resolveNxTokensInOptions = resolveNxTokensInOptions;
701
703
  function readTargetDefaultsForTarget(targetName, targetDefaults, executor) {
702
704
  if (executor) {
703
705
  // If an executor is defined in project.json, defaults should be read
@@ -708,12 +710,24 @@ function readTargetDefaultsForTarget(targetName, targetDefaults, executor) {
708
710
  const key = [executor, targetName].find((x) => targetDefaults?.[x]);
709
711
  return key ? targetDefaults?.[key] : null;
710
712
  }
711
- else {
713
+ else if (targetDefaults?.[targetName]) {
712
714
  // If the executor is not defined, the only key we have is the target name.
713
715
  return targetDefaults?.[targetName];
714
716
  }
717
+ let matchingTargetDefaultKey = null;
718
+ for (const key in targetDefaults ?? {}) {
719
+ if ((0, globs_1.isGlobPattern)(key) && (0, minimatch_1.minimatch)(targetName, key)) {
720
+ if (!matchingTargetDefaultKey ||
721
+ matchingTargetDefaultKey.length < key.length) {
722
+ matchingTargetDefaultKey = key;
723
+ }
724
+ }
725
+ }
726
+ if (matchingTargetDefaultKey) {
727
+ return targetDefaults[matchingTargetDefaultKey];
728
+ }
729
+ return {};
715
730
  }
716
- exports.readTargetDefaultsForTarget = readTargetDefaultsForTarget;
717
731
  function createRootMap(projectRootMap) {
718
732
  const map = {};
719
733
  for (const projectRoot in projectRootMap) {
@@ -754,6 +768,6 @@ function normalizeTarget(target, project) {
754
768
  for (const configuration in target.configurations) {
755
769
  target.configurations[configuration] = resolveNxTokensInOptions(target.configurations[configuration], project, `${project.root}:${target}:${configuration}`);
756
770
  }
771
+ target.parallelism ??= true;
757
772
  return target;
758
773
  }
759
- exports.normalizeTarget = normalizeTarget;
@@ -1,6 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.configurationGlobs = exports.retrieveProjectConfigurationsWithoutPluginInference = exports.retrieveProjectConfigurationPaths = exports.retrieveProjectConfigurationsWithAngularProjects = exports.retrieveProjectConfigurations = exports.retrieveWorkspaceFiles = void 0;
3
+ exports.retrieveWorkspaceFiles = retrieveWorkspaceFiles;
4
+ exports.retrieveProjectConfigurations = retrieveProjectConfigurations;
5
+ exports.retrieveProjectConfigurationsWithAngularProjects = retrieveProjectConfigurationsWithAngularProjects;
6
+ exports.retrieveProjectConfigurationPaths = retrieveProjectConfigurationPaths;
7
+ exports.retrieveProjectConfigurationsWithoutPluginInference = retrieveProjectConfigurationsWithoutPluginInference;
8
+ exports.configurationGlobs = configurationGlobs;
4
9
  const perf_hooks_1 = require("perf_hooks");
5
10
  const angular_json_1 = require("../../adapter/angular-json");
6
11
  const nx_json_1 = require("../../config/nx-json");
@@ -32,7 +37,6 @@ async function retrieveWorkspaceFiles(workspaceRoot, projectRootMap) {
32
37
  rustReferences: externalReferences,
33
38
  };
34
39
  }
35
- exports.retrieveWorkspaceFiles = retrieveWorkspaceFiles;
36
40
  /**
37
41
  * Walk through the workspace and return `ProjectConfigurations`. Only use this if the projectFileMap is not needed.
38
42
  */
@@ -41,7 +45,6 @@ async function retrieveProjectConfigurations(plugins, workspaceRoot, nxJson) {
41
45
  const workspaceFiles = await (0, workspace_context_1.globWithWorkspaceContext)(workspaceRoot, globPatterns);
42
46
  return (0, project_configuration_utils_1.createProjectConfigurations)(workspaceRoot, nxJson, workspaceFiles, plugins);
43
47
  }
44
- exports.retrieveProjectConfigurations = retrieveProjectConfigurations;
45
48
  async function retrieveProjectConfigurationsWithAngularProjects(workspaceRoot, nxJson) {
46
49
  const pluginsToLoad = nxJson?.plugins ?? [];
47
50
  if ((0, angular_json_1.shouldMergeAngularProjects)(workspaceRoot, true) &&
@@ -54,12 +57,10 @@ async function retrieveProjectConfigurationsWithAngularProjects(workspaceRoot, n
54
57
  cleanup();
55
58
  return res;
56
59
  }
57
- exports.retrieveProjectConfigurationsWithAngularProjects = retrieveProjectConfigurationsWithAngularProjects;
58
60
  function retrieveProjectConfigurationPaths(root, plugins) {
59
61
  const projectGlobPatterns = configurationGlobs(plugins);
60
62
  return (0, workspace_context_1.globWithWorkspaceContext)(root, projectGlobPatterns);
61
63
  }
62
- exports.retrieveProjectConfigurationPaths = retrieveProjectConfigurationPaths;
63
64
  const projectsWithoutPluginCache = new Map();
64
65
  // TODO: This function is called way too often, it should be optimized without this cache
65
66
  async function retrieveProjectConfigurationsWithoutPluginInference(root) {
@@ -76,7 +77,6 @@ async function retrieveProjectConfigurationsWithoutPluginInference(root) {
76
77
  cleanup();
77
78
  return projects;
78
79
  }
79
- exports.retrieveProjectConfigurationsWithoutPluginInference = retrieveProjectConfigurationsWithoutPluginInference;
80
80
  function configurationGlobs(plugins) {
81
81
  const globPatterns = [];
82
82
  for (const plugin of plugins) {
@@ -86,4 +86,3 @@ function configurationGlobs(plugins) {
86
86
  }
87
87
  return globPatterns;
88
88
  }
89
- exports.configurationGlobs = configurationGlobs;