@depup/nx 22.5.4-depup.0

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.
Files changed (1522) hide show
  1. package/.eslintrc.json +157 -0
  2. package/LICENSE +22 -0
  3. package/README.md +59 -0
  4. package/bin/init-local.d.ts +9 -0
  5. package/bin/init-local.d.ts.map +1 -0
  6. package/bin/init-local.js +195 -0
  7. package/bin/nx-cloud.d.ts +4 -0
  8. package/bin/nx-cloud.d.ts.map +1 -0
  9. package/bin/nx-cloud.js +47 -0
  10. package/bin/nx.d.ts +3 -0
  11. package/bin/nx.d.ts.map +1 -0
  12. package/bin/nx.js +252 -0
  13. package/bin/post-install.d.ts +2 -0
  14. package/bin/post-install.d.ts.map +1 -0
  15. package/bin/post-install.js +52 -0
  16. package/bin/run-executor.d.ts +2 -0
  17. package/bin/run-executor.d.ts.map +1 -0
  18. package/bin/run-executor.js +66 -0
  19. package/changes.json +122 -0
  20. package/executors.json +19 -0
  21. package/generators.json +16 -0
  22. package/migrations.json +147 -0
  23. package/package.json +309 -0
  24. package/plugins/package-json.d.ts +6 -0
  25. package/plugins/package-json.d.ts.map +1 -0
  26. package/plugins/package-json.js +38 -0
  27. package/presets/core.json +1 -0
  28. package/presets/npm.json +7 -0
  29. package/project.json +188 -0
  30. package/release/changelog-renderer/index.d.ts +109 -0
  31. package/release/changelog-renderer/index.d.ts.map +1 -0
  32. package/release/changelog-renderer/index.js +367 -0
  33. package/release/index.d.ts +5 -0
  34. package/release/index.d.ts.map +1 -0
  35. package/release/index.js +13 -0
  36. package/schemas/nx-schema.json +1400 -0
  37. package/schemas/project-schema.json +396 -0
  38. package/schemas/workspace-schema.json +185 -0
  39. package/src/adapter/angular-json.d.ts +11 -0
  40. package/src/adapter/angular-json.d.ts.map +1 -0
  41. package/src/adapter/angular-json.js +129 -0
  42. package/src/adapter/compat.d.ts +3 -0
  43. package/src/adapter/compat.d.ts.map +1 -0
  44. package/src/adapter/compat.js +153 -0
  45. package/src/adapter/ngcli-adapter.d.ts +102 -0
  46. package/src/adapter/ngcli-adapter.d.ts.map +1 -0
  47. package/src/adapter/ngcli-adapter.js +986 -0
  48. package/src/adapter/rxjs-for-await.d.ts +110 -0
  49. package/src/adapter/rxjs-for-await.d.ts.map +1 -0
  50. package/src/adapter/rxjs-for-await.js +362 -0
  51. package/src/ai/clone-ai-config-repo.d.ts +12 -0
  52. package/src/ai/clone-ai-config-repo.d.ts.map +1 -0
  53. package/src/ai/clone-ai-config-repo.js +136 -0
  54. package/src/ai/constants.d.ts +27 -0
  55. package/src/ai/constants.d.ts.map +1 -0
  56. package/src/ai/constants.js +69 -0
  57. package/src/ai/set-up-ai-agents/get-agent-rules.d.ts +6 -0
  58. package/src/ai/set-up-ai-agents/get-agent-rules.d.ts.map +1 -0
  59. package/src/ai/set-up-ai-agents/get-agent-rules.js +26 -0
  60. package/src/ai/set-up-ai-agents/schema.d.ts +11 -0
  61. package/src/ai/set-up-ai-agents/schema.json +34 -0
  62. package/src/ai/set-up-ai-agents/set-up-ai-agents.d.ts +11 -0
  63. package/src/ai/set-up-ai-agents/set-up-ai-agents.d.ts.map +1 -0
  64. package/src/ai/set-up-ai-agents/set-up-ai-agents.js +402 -0
  65. package/src/ai/utils.d.ts +21 -0
  66. package/src/ai/utils.d.ts.map +1 -0
  67. package/src/ai/utils.js +215 -0
  68. package/src/command-line/add/add.d.ts +4 -0
  69. package/src/command-line/add/add.d.ts.map +1 -0
  70. package/src/command-line/add/add.js +124 -0
  71. package/src/command-line/add/command-object.d.ts +9 -0
  72. package/src/command-line/add/command-object.d.ts.map +1 -0
  73. package/src/command-line/add/command-object.js +27 -0
  74. package/src/command-line/affected/affected.d.ts +11 -0
  75. package/src/command-line/affected/affected.d.ts.map +1 -0
  76. package/src/command-line/affected/affected.js +89 -0
  77. package/src/command-line/affected/command-object.d.ts +7 -0
  78. package/src/command-line/affected/command-object.d.ts.map +1 -0
  79. package/src/command-line/affected/command-object.js +82 -0
  80. package/src/command-line/configure-ai-agents/command-object.d.ts +9 -0
  81. package/src/command-line/configure-ai-agents/command-object.d.ts.map +1 -0
  82. package/src/command-line/configure-ai-agents/command-object.js +46 -0
  83. package/src/command-line/configure-ai-agents/configure-ai-agents.d.ts +4 -0
  84. package/src/command-line/configure-ai-agents/configure-ai-agents.d.ts.map +1 -0
  85. package/src/command-line/configure-ai-agents/configure-ai-agents.js +321 -0
  86. package/src/command-line/daemon/command-object.d.ts +4 -0
  87. package/src/command-line/daemon/command-object.d.ts.map +1 -0
  88. package/src/command-line/daemon/command-object.js +28 -0
  89. package/src/command-line/daemon/daemon.d.ts +3 -0
  90. package/src/command-line/daemon/daemon.d.ts.map +1 -0
  91. package/src/command-line/daemon/daemon.js +26 -0
  92. package/src/command-line/deprecated/command-objects.d.ts +10 -0
  93. package/src/command-line/deprecated/command-objects.d.ts.map +1 -0
  94. package/src/command-line/deprecated/command-objects.js +48 -0
  95. package/src/command-line/examples.d.ts +6 -0
  96. package/src/command-line/examples.d.ts.map +1 -0
  97. package/src/command-line/examples.js +375 -0
  98. package/src/command-line/exec/command-object.d.ts +3 -0
  99. package/src/command-line/exec/command-object.d.ts.map +1 -0
  100. package/src/command-line/exec/command-object.js +19 -0
  101. package/src/command-line/exec/exec.d.ts +2 -0
  102. package/src/command-line/exec/exec.d.ts.map +1 -0
  103. package/src/command-line/exec/exec.js +142 -0
  104. package/src/command-line/format/command-object.d.ts +4 -0
  105. package/src/command-line/format/command-object.d.ts.map +1 -0
  106. package/src/command-line/format/command-object.js +57 -0
  107. package/src/command-line/format/format.d.ts +3 -0
  108. package/src/command-line/format/format.d.ts.map +1 -0
  109. package/src/command-line/format/format.js +221 -0
  110. package/src/command-line/generate/command-object.d.ts +3 -0
  111. package/src/command-line/generate/command-object.d.ts.map +1 -0
  112. package/src/command-line/generate/command-object.js +66 -0
  113. package/src/command-line/generate/generate.d.ts +22 -0
  114. package/src/command-line/generate/generate.d.ts.map +1 -0
  115. package/src/command-line/generate/generate.js +264 -0
  116. package/src/command-line/generate/generator-utils.d.ts +19 -0
  117. package/src/command-line/generate/generator-utils.d.ts.map +1 -0
  118. package/src/command-line/generate/generator-utils.js +91 -0
  119. package/src/command-line/graph/command-object.d.ts +26 -0
  120. package/src/command-line/graph/command-object.d.ts.map +1 -0
  121. package/src/command-line/graph/command-object.js +75 -0
  122. package/src/command-line/graph/graph.d.ts +70 -0
  123. package/src/command-line/graph/graph.d.ts.map +1 -0
  124. package/src/command-line/graph/graph.js +971 -0
  125. package/src/command-line/import/command-object.d.ts +3 -0
  126. package/src/command-line/import/command-object.d.ts.map +1 -0
  127. package/src/command-line/import/command-object.js +44 -0
  128. package/src/command-line/import/import.d.ts +26 -0
  129. package/src/command-line/import/import.d.ts.map +1 -0
  130. package/src/command-line/import/import.js +375 -0
  131. package/src/command-line/import/utils/merge-remote-source.d.ts +3 -0
  132. package/src/command-line/import/utils/merge-remote-source.d.ts.map +1 -0
  133. package/src/command-line/import/utils/merge-remote-source.js +14 -0
  134. package/src/command-line/import/utils/prepare-source-repo.d.ts +3 -0
  135. package/src/command-line/import/utils/prepare-source-repo.d.ts.map +1 -0
  136. package/src/command-line/import/utils/prepare-source-repo.js +27 -0
  137. package/src/command-line/index.d.ts +23 -0
  138. package/src/command-line/index.d.ts.map +1 -0
  139. package/src/command-line/index.js +26 -0
  140. package/src/command-line/init/ai-agent-prompts.d.ts +3 -0
  141. package/src/command-line/init/ai-agent-prompts.d.ts.map +1 -0
  142. package/src/command-line/init/ai-agent-prompts.js +29 -0
  143. package/src/command-line/init/command-object.d.ts +3 -0
  144. package/src/command-line/init/command-object.d.ts.map +1 -0
  145. package/src/command-line/init/command-object.js +115 -0
  146. package/src/command-line/init/configure-plugins.d.ts +35 -0
  147. package/src/command-line/init/configure-plugins.d.ts.map +1 -0
  148. package/src/command-line/init/configure-plugins.js +204 -0
  149. package/src/command-line/init/implementation/add-nx-to-monorepo.d.ts +7 -0
  150. package/src/command-line/init/implementation/add-nx-to-monorepo.d.ts.map +1 -0
  151. package/src/command-line/init/implementation/add-nx-to-monorepo.js +130 -0
  152. package/src/command-line/init/implementation/add-nx-to-nest.d.ts +6 -0
  153. package/src/command-line/init/implementation/add-nx-to-nest.d.ts.map +1 -0
  154. package/src/command-line/init/implementation/add-nx-to-nest.js +345 -0
  155. package/src/command-line/init/implementation/add-nx-to-npm-repo.d.ts +7 -0
  156. package/src/command-line/init/implementation/add-nx-to-npm-repo.d.ts.map +1 -0
  157. package/src/command-line/init/implementation/add-nx-to-npm-repo.js +72 -0
  158. package/src/command-line/init/implementation/add-nx-to-turborepo.d.ts +5 -0
  159. package/src/command-line/init/implementation/add-nx-to-turborepo.d.ts.map +1 -0
  160. package/src/command-line/init/implementation/add-nx-to-turborepo.js +49 -0
  161. package/src/command-line/init/implementation/angular/index.d.ts +3 -0
  162. package/src/command-line/init/implementation/angular/index.d.ts.map +1 -0
  163. package/src/command-line/init/implementation/angular/index.js +125 -0
  164. package/src/command-line/init/implementation/angular/integrated-workspace.d.ts +2 -0
  165. package/src/command-line/init/implementation/angular/integrated-workspace.d.ts.map +1 -0
  166. package/src/command-line/init/implementation/angular/integrated-workspace.js +12 -0
  167. package/src/command-line/init/implementation/angular/legacy-angular-versions.d.ts +3 -0
  168. package/src/command-line/init/implementation/angular/legacy-angular-versions.d.ts.map +1 -0
  169. package/src/command-line/init/implementation/angular/legacy-angular-versions.js +143 -0
  170. package/src/command-line/init/implementation/angular/standalone-workspace.d.ts +2 -0
  171. package/src/command-line/init/implementation/angular/standalone-workspace.d.ts.map +1 -0
  172. package/src/command-line/init/implementation/angular/standalone-workspace.js +204 -0
  173. package/src/command-line/init/implementation/angular/types.d.ts +21 -0
  174. package/src/command-line/init/implementation/angular/types.d.ts.map +1 -0
  175. package/src/command-line/init/implementation/angular/types.js +2 -0
  176. package/src/command-line/init/implementation/check-compatible-with-plugins.d.ts +16 -0
  177. package/src/command-line/init/implementation/check-compatible-with-plugins.d.ts.map +1 -0
  178. package/src/command-line/init/implementation/check-compatible-with-plugins.js +134 -0
  179. package/src/command-line/init/implementation/deduce-default-base.d.ts +2 -0
  180. package/src/command-line/init/implementation/deduce-default-base.d.ts.map +1 -0
  181. package/src/command-line/init/implementation/deduce-default-base.js +53 -0
  182. package/src/command-line/init/implementation/dot-nx/add-nx-scripts.d.ts +11 -0
  183. package/src/command-line/init/implementation/dot-nx/add-nx-scripts.d.ts.map +1 -0
  184. package/src/command-line/init/implementation/dot-nx/add-nx-scripts.js +119 -0
  185. package/src/command-line/init/implementation/dot-nx/nxw.d.ts +2 -0
  186. package/src/command-line/init/implementation/dot-nx/nxw.d.ts.map +1 -0
  187. package/src/command-line/init/implementation/dot-nx/nxw.js +117 -0
  188. package/src/command-line/init/implementation/react/add-craco-commands-to-package-scripts.d.ts +2 -0
  189. package/src/command-line/init/implementation/react/add-craco-commands-to-package-scripts.d.ts.map +1 -0
  190. package/src/command-line/init/implementation/react/add-craco-commands-to-package-scripts.js +21 -0
  191. package/src/command-line/init/implementation/react/add-vite-commands-to-package-scripts.d.ts +2 -0
  192. package/src/command-line/init/implementation/react/add-vite-commands-to-package-scripts.d.ts.map +1 -0
  193. package/src/command-line/init/implementation/react/add-vite-commands-to-package-scripts.js +20 -0
  194. package/src/command-line/init/implementation/react/check-for-custom-webpack-setup.d.ts +2 -0
  195. package/src/command-line/init/implementation/react/check-for-custom-webpack-setup.d.ts.map +1 -0
  196. package/src/command-line/init/implementation/react/check-for-custom-webpack-setup.js +17 -0
  197. package/src/command-line/init/implementation/react/check-for-uncommitted-changes.d.ts +2 -0
  198. package/src/command-line/init/implementation/react/check-for-uncommitted-changes.d.ts.map +1 -0
  199. package/src/command-line/init/implementation/react/check-for-uncommitted-changes.js +20 -0
  200. package/src/command-line/init/implementation/react/clean-up-files.d.ts +2 -0
  201. package/src/command-line/init/implementation/react/clean-up-files.d.ts.map +1 -0
  202. package/src/command-line/init/implementation/react/clean-up-files.js +30 -0
  203. package/src/command-line/init/implementation/react/index.d.ts +5 -0
  204. package/src/command-line/init/implementation/react/index.d.ts.map +1 -0
  205. package/src/command-line/init/implementation/react/index.js +77 -0
  206. package/src/command-line/init/implementation/react/read-name-from-package-json.d.ts +2 -0
  207. package/src/command-line/init/implementation/react/read-name-from-package-json.d.ts.map +1 -0
  208. package/src/command-line/init/implementation/react/read-name-from-package-json.js +16 -0
  209. package/src/command-line/init/implementation/react/rename-js-to-jsx.d.ts +2 -0
  210. package/src/command-line/init/implementation/react/rename-js-to-jsx.d.ts.map +1 -0
  211. package/src/command-line/init/implementation/react/rename-js-to-jsx.js +22 -0
  212. package/src/command-line/init/implementation/react/tsconfig-setup.d.ts +2 -0
  213. package/src/command-line/init/implementation/react/tsconfig-setup.d.ts.map +1 -0
  214. package/src/command-line/init/implementation/react/tsconfig-setup.js +108 -0
  215. package/src/command-line/init/implementation/react/write-vite-config.d.ts +2 -0
  216. package/src/command-line/init/implementation/react/write-vite-config.d.ts.map +1 -0
  217. package/src/command-line/init/implementation/react/write-vite-config.js +53 -0
  218. package/src/command-line/init/implementation/react/write-vite-index-html.d.ts +2 -0
  219. package/src/command-line/init/implementation/react/write-vite-index-html.d.ts.map +1 -0
  220. package/src/command-line/init/implementation/react/write-vite-index-html.js +24 -0
  221. package/src/command-line/init/implementation/utils.d.ts +21 -0
  222. package/src/command-line/init/implementation/utils.d.ts.map +1 -0
  223. package/src/command-line/init/implementation/utils.js +286 -0
  224. package/src/command-line/init/init-v1.d.ts +12 -0
  225. package/src/command-line/init/init-v1.d.ts.map +1 -0
  226. package/src/command-line/init/init-v1.js +130 -0
  227. package/src/command-line/init/init-v2.d.ts +18 -0
  228. package/src/command-line/init/init-v2.d.ts.map +1 -0
  229. package/src/command-line/init/init-v2.js +355 -0
  230. package/src/command-line/list/command-object.d.ts +3 -0
  231. package/src/command-line/list/command-object.d.ts.map +1 -0
  232. package/src/command-line/list/command-object.js +20 -0
  233. package/src/command-line/list/list.d.ts +16 -0
  234. package/src/command-line/list/list.d.ts.map +1 -0
  235. package/src/command-line/list/list.js +48 -0
  236. package/src/command-line/mcp/command-object.d.ts +3 -0
  237. package/src/command-line/mcp/command-object.d.ts.map +1 -0
  238. package/src/command-line/mcp/command-object.js +28 -0
  239. package/src/command-line/mcp/mcp.d.ts +3 -0
  240. package/src/command-line/mcp/mcp.d.ts.map +1 -0
  241. package/src/command-line/mcp/mcp.js +58 -0
  242. package/src/command-line/migrate/command-object.d.ts +4 -0
  243. package/src/command-line/migrate/command-object.d.ts.map +1 -0
  244. package/src/command-line/migrate/command-object.js +77 -0
  245. package/src/command-line/migrate/migrate-ui-api.d.ts +77 -0
  246. package/src/command-line/migrate/migrate-ui-api.d.ts.map +1 -0
  247. package/src/command-line/migrate/migrate-ui-api.js +341 -0
  248. package/src/command-line/migrate/migrate.d.ts +136 -0
  249. package/src/command-line/migrate/migrate.d.ts.map +1 -0
  250. package/src/command-line/migrate/migrate.js +1338 -0
  251. package/src/command-line/migrate/run-migration-process.js +85 -0
  252. package/src/command-line/new/command-object.d.ts +3 -0
  253. package/src/command-line/new/command-object.d.ts.map +1 -0
  254. package/src/command-line/new/command-object.js +25 -0
  255. package/src/command-line/new/new.d.ts +4 -0
  256. package/src/command-line/new/new.d.ts.map +1 -0
  257. package/src/command-line/new/new.js +30 -0
  258. package/src/command-line/nx-cloud/apply-locally/apply-locally.d.ts +5 -0
  259. package/src/command-line/nx-cloud/apply-locally/apply-locally.d.ts.map +1 -0
  260. package/src/command-line/nx-cloud/apply-locally/apply-locally.js +13 -0
  261. package/src/command-line/nx-cloud/apply-locally/command-object.d.ts +3 -0
  262. package/src/command-line/nx-cloud/apply-locally/command-object.d.ts.map +1 -0
  263. package/src/command-line/nx-cloud/apply-locally/command-object.js +15 -0
  264. package/src/command-line/nx-cloud/complete-run/command-object.d.ts +3 -0
  265. package/src/command-line/nx-cloud/complete-run/command-object.d.ts.map +1 -0
  266. package/src/command-line/nx-cloud/complete-run/command-object.js +16 -0
  267. package/src/command-line/nx-cloud/complete-run/stop-all-agents.d.ts +5 -0
  268. package/src/command-line/nx-cloud/complete-run/stop-all-agents.d.ts.map +1 -0
  269. package/src/command-line/nx-cloud/complete-run/stop-all-agents.js +13 -0
  270. package/src/command-line/nx-cloud/connect/command-object.d.ts +4 -0
  271. package/src/command-line/nx-cloud/connect/command-object.d.ts.map +1 -0
  272. package/src/command-line/nx-cloud/connect/command-object.js +33 -0
  273. package/src/command-line/nx-cloud/connect/connect-to-nx-cloud.d.ts +14 -0
  274. package/src/command-line/nx-cloud/connect/connect-to-nx-cloud.d.ts.map +1 -0
  275. package/src/command-line/nx-cloud/connect/connect-to-nx-cloud.js +163 -0
  276. package/src/command-line/nx-cloud/connect/view-logs.d.ts +2 -0
  277. package/src/command-line/nx-cloud/connect/view-logs.d.ts.map +1 -0
  278. package/src/command-line/nx-cloud/connect/view-logs.js +53 -0
  279. package/src/command-line/nx-cloud/download-cloud-client/command-object.d.ts +3 -0
  280. package/src/command-line/nx-cloud/download-cloud-client/command-object.d.ts.map +1 -0
  281. package/src/command-line/nx-cloud/download-cloud-client/command-object.js +12 -0
  282. package/src/command-line/nx-cloud/download-cloud-client/download-cloud-client.d.ts +5 -0
  283. package/src/command-line/nx-cloud/download-cloud-client/download-cloud-client.d.ts.map +1 -0
  284. package/src/command-line/nx-cloud/download-cloud-client/download-cloud-client.js +26 -0
  285. package/src/command-line/nx-cloud/fix-ci/command-object.d.ts +3 -0
  286. package/src/command-line/nx-cloud/fix-ci/command-object.d.ts.map +1 -0
  287. package/src/command-line/nx-cloud/fix-ci/command-object.js +15 -0
  288. package/src/command-line/nx-cloud/fix-ci/fix-ci.d.ts +5 -0
  289. package/src/command-line/nx-cloud/fix-ci/fix-ci.d.ts.map +1 -0
  290. package/src/command-line/nx-cloud/fix-ci/fix-ci.js +13 -0
  291. package/src/command-line/nx-cloud/login/command-object.d.ts +3 -0
  292. package/src/command-line/nx-cloud/login/command-object.d.ts.map +1 -0
  293. package/src/command-line/nx-cloud/login/command-object.js +19 -0
  294. package/src/command-line/nx-cloud/login/login.d.ts +6 -0
  295. package/src/command-line/nx-cloud/login/login.d.ts.map +1 -0
  296. package/src/command-line/nx-cloud/login/login.js +16 -0
  297. package/src/command-line/nx-cloud/logout/command-object.d.ts +3 -0
  298. package/src/command-line/nx-cloud/logout/command-object.d.ts.map +1 -0
  299. package/src/command-line/nx-cloud/logout/command-object.js +15 -0
  300. package/src/command-line/nx-cloud/logout/logout.d.ts +5 -0
  301. package/src/command-line/nx-cloud/logout/logout.d.ts.map +1 -0
  302. package/src/command-line/nx-cloud/logout/logout.js +13 -0
  303. package/src/command-line/nx-cloud/record/command-object.d.ts +3 -0
  304. package/src/command-line/nx-cloud/record/command-object.d.ts.map +1 -0
  305. package/src/command-line/nx-cloud/record/command-object.js +18 -0
  306. package/src/command-line/nx-cloud/record/record.d.ts +6 -0
  307. package/src/command-line/nx-cloud/record/record.d.ts.map +1 -0
  308. package/src/command-line/nx-cloud/record/record.js +33 -0
  309. package/src/command-line/nx-cloud/start-agent/command-object.d.ts +3 -0
  310. package/src/command-line/nx-cloud/start-agent/command-object.d.ts.map +1 -0
  311. package/src/command-line/nx-cloud/start-agent/command-object.js +15 -0
  312. package/src/command-line/nx-cloud/start-agent/start-agent.d.ts +5 -0
  313. package/src/command-line/nx-cloud/start-agent/start-agent.d.ts.map +1 -0
  314. package/src/command-line/nx-cloud/start-agent/start-agent.js +13 -0
  315. package/src/command-line/nx-cloud/start-ci-run/command-object.d.ts +3 -0
  316. package/src/command-line/nx-cloud/start-ci-run/command-object.d.ts.map +1 -0
  317. package/src/command-line/nx-cloud/start-ci-run/command-object.js +15 -0
  318. package/src/command-line/nx-cloud/start-ci-run/start-ci-run.d.ts +5 -0
  319. package/src/command-line/nx-cloud/start-ci-run/start-ci-run.d.ts.map +1 -0
  320. package/src/command-line/nx-cloud/start-ci-run/start-ci-run.js +13 -0
  321. package/src/command-line/nx-cloud/utils.d.ts +3 -0
  322. package/src/command-line/nx-cloud/utils.d.ts.map +1 -0
  323. package/src/command-line/nx-cloud/utils.js +27 -0
  324. package/src/command-line/nx-commands.d.ts +11 -0
  325. package/src/command-line/nx-commands.d.ts.map +1 -0
  326. package/src/command-line/nx-commands.js +160 -0
  327. package/src/command-line/register/command-object.d.ts +7 -0
  328. package/src/command-line/register/command-object.d.ts.map +1 -0
  329. package/src/command-line/register/command-object.js +26 -0
  330. package/src/command-line/register/register.d.ts +3 -0
  331. package/src/command-line/register/register.d.ts.map +1 -0
  332. package/src/command-line/register/register.js +9 -0
  333. package/src/command-line/release/changelog/commit-utils.d.ts +14 -0
  334. package/src/command-line/release/changelog/commit-utils.d.ts.map +1 -0
  335. package/src/command-line/release/changelog/commit-utils.js +63 -0
  336. package/src/command-line/release/changelog/version-plan-filtering.d.ts +42 -0
  337. package/src/command-line/release/changelog/version-plan-filtering.d.ts.map +1 -0
  338. package/src/command-line/release/changelog/version-plan-filtering.js +152 -0
  339. package/src/command-line/release/changelog/version-plan-utils.d.ts +32 -0
  340. package/src/command-line/release/changelog/version-plan-utils.d.ts.map +1 -0
  341. package/src/command-line/release/changelog/version-plan-utils.js +92 -0
  342. package/src/command-line/release/changelog.d.ts +22 -0
  343. package/src/command-line/release/changelog.d.ts.map +1 -0
  344. package/src/command-line/release/changelog.js +892 -0
  345. package/src/command-line/release/command-object.d.ts +84 -0
  346. package/src/command-line/release/command-object.d.ts.map +1 -0
  347. package/src/command-line/release/command-object.js +337 -0
  348. package/src/command-line/release/config/config.d.ts +74 -0
  349. package/src/command-line/release/config/config.d.ts.map +1 -0
  350. package/src/command-line/release/config/config.js +1172 -0
  351. package/src/command-line/release/config/conventional-commits.d.ts +3 -0
  352. package/src/command-line/release/config/conventional-commits.d.ts.map +1 -0
  353. package/src/command-line/release/config/conventional-commits.js +106 -0
  354. package/src/command-line/release/config/deep-merge-json.d.ts +2 -0
  355. package/src/command-line/release/config/deep-merge-json.d.ts.map +1 -0
  356. package/src/command-line/release/config/deep-merge-json.js +28 -0
  357. package/src/command-line/release/config/filter-release-groups.d.ts +24 -0
  358. package/src/command-line/release/config/filter-release-groups.d.ts.map +1 -0
  359. package/src/command-line/release/config/filter-release-groups.js +157 -0
  360. package/src/command-line/release/config/version-plans.d.ts +43 -0
  361. package/src/command-line/release/config/version-plans.d.ts.map +1 -0
  362. package/src/command-line/release/config/version-plans.js +254 -0
  363. package/src/command-line/release/index.d.ts +50 -0
  364. package/src/command-line/release/index.d.ts.map +1 -0
  365. package/src/command-line/release/index.js +49 -0
  366. package/src/command-line/release/plan-check.d.ts +5 -0
  367. package/src/command-line/release/plan-check.d.ts.map +1 -0
  368. package/src/command-line/release/plan-check.js +170 -0
  369. package/src/command-line/release/plan.d.ts +5 -0
  370. package/src/command-line/release/plan.d.ts.map +1 -0
  371. package/src/command-line/release/plan.js +261 -0
  372. package/src/command-line/release/publish.d.ts +10 -0
  373. package/src/command-line/release/publish.d.ts.map +1 -0
  374. package/src/command-line/release/publish.js +234 -0
  375. package/src/command-line/release/release.d.ts +6 -0
  376. package/src/command-line/release/release.d.ts.map +1 -0
  377. package/src/command-line/release/release.js +300 -0
  378. package/src/command-line/release/utils/exec-command.d.ts +2 -0
  379. package/src/command-line/release/utils/exec-command.d.ts.map +1 -0
  380. package/src/command-line/release/utils/exec-command.js +34 -0
  381. package/src/command-line/release/utils/generate-version-plan-content.d.ts +2 -0
  382. package/src/command-line/release/utils/generate-version-plan-content.d.ts.map +1 -0
  383. package/src/command-line/release/utils/generate-version-plan-content.js +20 -0
  384. package/src/command-line/release/utils/get-touched-projects-for-group.d.ts +8 -0
  385. package/src/command-line/release/utils/get-touched-projects-for-group.d.ts.map +1 -0
  386. package/src/command-line/release/utils/get-touched-projects-for-group.js +78 -0
  387. package/src/command-line/release/utils/git.d.ts +121 -0
  388. package/src/command-line/release/utils/git.d.ts.map +1 -0
  389. package/src/command-line/release/utils/git.js +560 -0
  390. package/src/command-line/release/utils/launch-editor.d.ts +2 -0
  391. package/src/command-line/release/utils/launch-editor.d.ts.map +1 -0
  392. package/src/command-line/release/utils/launch-editor.js +46 -0
  393. package/src/command-line/release/utils/markdown.d.ts +7 -0
  394. package/src/command-line/release/utils/markdown.d.ts.map +1 -0
  395. package/src/command-line/release/utils/markdown.js +28 -0
  396. package/src/command-line/release/utils/print-changes.d.ts +7 -0
  397. package/src/command-line/release/utils/print-changes.d.ts.map +1 -0
  398. package/src/command-line/release/utils/print-changes.js +62 -0
  399. package/src/command-line/release/utils/print-config.d.ts +8 -0
  400. package/src/command-line/release/utils/print-config.d.ts.map +1 -0
  401. package/src/command-line/release/utils/print-config.js +36 -0
  402. package/src/command-line/release/utils/release-graph.d.ts +230 -0
  403. package/src/command-line/release/utils/release-graph.d.ts.map +1 -0
  404. package/src/command-line/release/utils/release-graph.js +700 -0
  405. package/src/command-line/release/utils/remote-release-clients/extract-repo-slug.d.ts +10 -0
  406. package/src/command-line/release/utils/remote-release-clients/extract-repo-slug.d.ts.map +1 -0
  407. package/src/command-line/release/utils/remote-release-clients/extract-repo-slug.js +61 -0
  408. package/src/command-line/release/utils/remote-release-clients/github.d.ts +58 -0
  409. package/src/command-line/release/utils/remote-release-clients/github.d.ts.map +1 -0
  410. package/src/command-line/release/utils/remote-release-clients/github.js +305 -0
  411. package/src/command-line/release/utils/remote-release-clients/gitlab.d.ts +63 -0
  412. package/src/command-line/release/utils/remote-release-clients/gitlab.d.ts.map +1 -0
  413. package/src/command-line/release/utils/remote-release-clients/gitlab.js +266 -0
  414. package/src/command-line/release/utils/remote-release-clients/remote-release-client.d.ts +112 -0
  415. package/src/command-line/release/utils/remote-release-clients/remote-release-client.d.ts.map +1 -0
  416. package/src/command-line/release/utils/remote-release-clients/remote-release-client.js +136 -0
  417. package/src/command-line/release/utils/repository-git-tags.d.ts +26 -0
  418. package/src/command-line/release/utils/repository-git-tags.d.ts.map +1 -0
  419. package/src/command-line/release/utils/repository-git-tags.js +125 -0
  420. package/src/command-line/release/utils/resolve-changelog-renderer.d.ts +3 -0
  421. package/src/command-line/release/utils/resolve-changelog-renderer.d.ts.map +1 -0
  422. package/src/command-line/release/utils/resolve-changelog-renderer.js +34 -0
  423. package/src/command-line/release/utils/resolve-nx-json-error-message.d.ts +2 -0
  424. package/src/command-line/release/utils/resolve-nx-json-error-message.d.ts.map +1 -0
  425. package/src/command-line/release/utils/resolve-nx-json-error-message.js +52 -0
  426. package/src/command-line/release/utils/resolve-semver-specifier.d.ts +8 -0
  427. package/src/command-line/release/utils/resolve-semver-specifier.d.ts.map +1 -0
  428. package/src/command-line/release/utils/resolve-semver-specifier.js +58 -0
  429. package/src/command-line/release/utils/semver.d.ts +27 -0
  430. package/src/command-line/release/utils/semver.d.ts.map +1 -0
  431. package/src/command-line/release/utils/semver.js +105 -0
  432. package/src/command-line/release/utils/shared-legacy.d.ts +26 -0
  433. package/src/command-line/release/utils/shared-legacy.d.ts.map +1 -0
  434. package/src/command-line/release/utils/shared-legacy.js +2 -0
  435. package/src/command-line/release/utils/shared.d.ts +65 -0
  436. package/src/command-line/release/utils/shared.d.ts.map +1 -0
  437. package/src/command-line/release/utils/shared.js +342 -0
  438. package/src/command-line/release/utils/test/test-utils.d.ts +21 -0
  439. package/src/command-line/release/utils/test/test-utils.d.ts.map +1 -0
  440. package/src/command-line/release/utils/test/test-utils.js +25 -0
  441. package/src/command-line/release/utils/version-plan-utils.d.ts +41 -0
  442. package/src/command-line/release/utils/version-plan-utils.d.ts.map +1 -0
  443. package/src/command-line/release/utils/version-plan-utils.js +111 -0
  444. package/src/command-line/release/version/derive-specifier-from-conventional-commits.d.ts +9 -0
  445. package/src/command-line/release/version/derive-specifier-from-conventional-commits.d.ts.map +1 -0
  446. package/src/command-line/release/version/derive-specifier-from-conventional-commits.js +56 -0
  447. package/src/command-line/release/version/deriver-specifier-from-version-plans.d.ts +9 -0
  448. package/src/command-line/release/version/deriver-specifier-from-version-plans.d.ts.map +1 -0
  449. package/src/command-line/release/version/deriver-specifier-from-version-plans.js +59 -0
  450. package/src/command-line/release/version/project-logger.d.ts +9 -0
  451. package/src/command-line/release/version/project-logger.d.ts.map +1 -0
  452. package/src/command-line/release/version/project-logger.js +46 -0
  453. package/src/command-line/release/version/release-group-processor.d.ts +108 -0
  454. package/src/command-line/release/version/release-group-processor.d.ts.map +1 -0
  455. package/src/command-line/release/version/release-group-processor.js +603 -0
  456. package/src/command-line/release/version/resolve-current-version.d.ts +33 -0
  457. package/src/command-line/release/version/resolve-current-version.d.ts.map +1 -0
  458. package/src/command-line/release/version/resolve-current-version.js +239 -0
  459. package/src/command-line/release/version/test-utils.d.ts +103 -0
  460. package/src/command-line/release/version/test-utils.d.ts.map +1 -0
  461. package/src/command-line/release/version/test-utils.js +426 -0
  462. package/src/command-line/release/version/topological-sort.d.ts +10 -0
  463. package/src/command-line/release/version/topological-sort.d.ts.map +1 -0
  464. package/src/command-line/release/version/topological-sort.js +41 -0
  465. package/src/command-line/release/version/version-actions.d.ts +200 -0
  466. package/src/command-line/release/version/version-actions.d.ts.map +1 -0
  467. package/src/command-line/release/version/version-actions.js +251 -0
  468. package/src/command-line/release/version.d.ts +26 -0
  469. package/src/command-line/release/version.d.ts.map +1 -0
  470. package/src/command-line/release/version.js +367 -0
  471. package/src/command-line/repair/command-object.d.ts +3 -0
  472. package/src/command-line/repair/command-object.d.ts.map +1 -0
  473. package/src/command-line/repair/command-object.js +20 -0
  474. package/src/command-line/repair/repair.d.ts +4 -0
  475. package/src/command-line/repair/repair.d.ts.map +1 -0
  476. package/src/command-line/repair/repair.js +41 -0
  477. package/src/command-line/report/command-object.d.ts +3 -0
  478. package/src/command-line/report/command-object.d.ts.map +1 -0
  479. package/src/command-line/report/command-object.js +11 -0
  480. package/src/command-line/report/report.d.ts +72 -0
  481. package/src/command-line/report/report.d.ts.map +1 -0
  482. package/src/command-line/report/report.js +405 -0
  483. package/src/command-line/reset/command-object.d.ts +9 -0
  484. package/src/command-line/reset/command-object.d.ts.map +1 -0
  485. package/src/command-line/reset/command-object.js +26 -0
  486. package/src/command-line/reset/reset.d.ts +3 -0
  487. package/src/command-line/reset/reset.d.ts.map +1 -0
  488. package/src/command-line/reset/reset.js +162 -0
  489. package/src/command-line/run/command-object.d.ts +7 -0
  490. package/src/command-line/run/command-object.d.ts.map +1 -0
  491. package/src/command-line/run/command-object.js +42 -0
  492. package/src/command-line/run/executor-utils.d.ts +13 -0
  493. package/src/command-line/run/executor-utils.d.ts.map +1 -0
  494. package/src/command-line/run/executor-utils.js +95 -0
  495. package/src/command-line/run/run-one.d.ts +18 -0
  496. package/src/command-line/run/run-one.d.ts.map +1 -0
  497. package/src/command-line/run/run-one.js +152 -0
  498. package/src/command-line/run/run.d.ts +52 -0
  499. package/src/command-line/run/run.d.ts.map +1 -0
  500. package/src/command-line/run/run.js +178 -0
  501. package/src/command-line/run-many/command-object.d.ts +3 -0
  502. package/src/command-line/run-many/command-object.d.ts.map +1 -0
  503. package/src/command-line/run-many/command-object.js +17 -0
  504. package/src/command-line/run-many/run-many.d.ts +11 -0
  505. package/src/command-line/run-many/run-many.d.ts.map +1 -0
  506. package/src/command-line/run-many/run-many.js +89 -0
  507. package/src/command-line/show/command-object.d.ts +27 -0
  508. package/src/command-line/show/command-object.d.ts.map +1 -0
  509. package/src/command-line/show/command-object.js +116 -0
  510. package/src/command-line/show/project.d.ts +3 -0
  511. package/src/command-line/show/project.d.ts.map +1 -0
  512. package/src/command-line/show/project.js +103 -0
  513. package/src/command-line/show/projects.d.ts +3 -0
  514. package/src/command-line/show/projects.d.ts.map +1 -0
  515. package/src/command-line/show/projects.js +80 -0
  516. package/src/command-line/sync/command-object.d.ts +7 -0
  517. package/src/command-line/sync/command-object.d.ts.map +1 -0
  518. package/src/command-line/sync/command-object.js +20 -0
  519. package/src/command-line/sync/sync.d.ts +7 -0
  520. package/src/command-line/sync/sync.d.ts.map +1 -0
  521. package/src/command-line/sync/sync.js +119 -0
  522. package/src/command-line/watch/command-object.d.ts +3 -0
  523. package/src/command-line/watch/command-object.d.ts.map +1 -0
  524. package/src/command-line/watch/command-object.js +70 -0
  525. package/src/command-line/watch/watch.d.ts +25 -0
  526. package/src/command-line/watch/watch.d.ts.map +1 -0
  527. package/src/command-line/watch/watch.js +198 -0
  528. package/src/command-line/yargs-utils/arguments-of.d.ts +12 -0
  529. package/src/command-line/yargs-utils/arguments-of.d.ts.map +1 -0
  530. package/src/command-line/yargs-utils/arguments-of.js +9 -0
  531. package/src/command-line/yargs-utils/documentation.d.ts +3 -0
  532. package/src/command-line/yargs-utils/documentation.d.ts.map +1 -0
  533. package/src/command-line/yargs-utils/documentation.js +11 -0
  534. package/src/command-line/yargs-utils/shared-options.d.ts +87 -0
  535. package/src/command-line/yargs-utils/shared-options.d.ts.map +1 -0
  536. package/src/command-line/yargs-utils/shared-options.js +351 -0
  537. package/src/commands-runner/command-graph.d.ts +14 -0
  538. package/src/commands-runner/command-graph.d.ts.map +1 -0
  539. package/src/commands-runner/command-graph.js +2 -0
  540. package/src/commands-runner/create-command-graph.d.ts +5 -0
  541. package/src/commands-runner/create-command-graph.d.ts.map +1 -0
  542. package/src/commands-runner/create-command-graph.js +67 -0
  543. package/src/commands-runner/get-command-projects.d.ts +4 -0
  544. package/src/commands-runner/get-command-projects.d.ts.map +1 -0
  545. package/src/commands-runner/get-command-projects.js +33 -0
  546. package/src/config/calculate-default-project-name.d.ts +5 -0
  547. package/src/config/calculate-default-project-name.d.ts.map +1 -0
  548. package/src/config/calculate-default-project-name.js +41 -0
  549. package/src/config/configuration.d.ts +9 -0
  550. package/src/config/configuration.d.ts.map +1 -0
  551. package/src/config/configuration.js +17 -0
  552. package/src/config/misc-interfaces.d.ts +222 -0
  553. package/src/config/misc-interfaces.d.ts.map +1 -0
  554. package/src/config/misc-interfaces.js +2 -0
  555. package/src/config/nx-json.d.ts +846 -0
  556. package/src/config/nx-json.d.ts.map +1 -0
  557. package/src/config/nx-json.js +40 -0
  558. package/src/config/project-graph.d.ts +138 -0
  559. package/src/config/project-graph.d.ts.map +1 -0
  560. package/src/config/project-graph.js +45 -0
  561. package/src/config/schema-utils.d.ts +17 -0
  562. package/src/config/schema-utils.d.ts.map +1 -0
  563. package/src/config/schema-utils.js +125 -0
  564. package/src/config/task-graph.d.ts +110 -0
  565. package/src/config/task-graph.d.ts.map +1 -0
  566. package/src/config/task-graph.js +2 -0
  567. package/src/config/to-project-name.d.ts +6 -0
  568. package/src/config/to-project-name.d.ts.map +1 -0
  569. package/src/config/to-project-name.js +12 -0
  570. package/src/config/workspace-json-project-json.d.ts +260 -0
  571. package/src/config/workspace-json-project-json.d.ts.map +1 -0
  572. package/src/config/workspace-json-project-json.js +2 -0
  573. package/src/core/graph/environment.js +1 -0
  574. package/src/core/graph/favicon.ico +0 -0
  575. package/src/core/graph/index.html +32 -0
  576. package/src/core/graph/main.js +1 -0
  577. package/src/core/graph/runtime.js +1 -0
  578. package/src/core/graph/styles.css +3 -0
  579. package/src/core/graph/styles.js +1 -0
  580. package/src/daemon/cache.d.ts +11 -0
  581. package/src/daemon/cache.d.ts.map +1 -0
  582. package/src/daemon/cache.js +58 -0
  583. package/src/daemon/client/client.d.ts +106 -0
  584. package/src/daemon/client/client.d.ts.map +1 -0
  585. package/src/daemon/client/client.js +1009 -0
  586. package/src/daemon/client/daemon-socket-messenger.d.ts +16 -0
  587. package/src/daemon/client/daemon-socket-messenger.d.ts.map +1 -0
  588. package/src/daemon/client/daemon-socket-messenger.js +54 -0
  589. package/src/daemon/client/exec-is-server-available.d.ts +2 -0
  590. package/src/daemon/client/exec-is-server-available.d.ts.map +1 -0
  591. package/src/daemon/client/exec-is-server-available.js +11 -0
  592. package/src/daemon/client/generate-help-output.d.ts +2 -0
  593. package/src/daemon/client/generate-help-output.d.ts.map +1 -0
  594. package/src/daemon/client/generate-help-output.js +26 -0
  595. package/src/daemon/is-nx-version-mismatch.d.ts +3 -0
  596. package/src/daemon/is-nx-version-mismatch.d.ts.map +1 -0
  597. package/src/daemon/is-nx-version-mismatch.js +24 -0
  598. package/src/daemon/is-on-daemon.d.ts +2 -0
  599. package/src/daemon/is-on-daemon.d.ts.map +1 -0
  600. package/src/daemon/is-on-daemon.js +6 -0
  601. package/src/daemon/is-v8-serializer-enabled.d.ts +6 -0
  602. package/src/daemon/is-v8-serializer-enabled.d.ts.map +1 -0
  603. package/src/daemon/is-v8-serializer-enabled.js +10 -0
  604. package/src/daemon/logger.d.ts +26 -0
  605. package/src/daemon/logger.d.ts.map +1 -0
  606. package/src/daemon/logger.js +65 -0
  607. package/src/daemon/message-types/flush-sync-generator-changes-to-disk.d.ts +7 -0
  608. package/src/daemon/message-types/flush-sync-generator-changes-to-disk.d.ts.map +1 -0
  609. package/src/daemon/message-types/flush-sync-generator-changes-to-disk.js +11 -0
  610. package/src/daemon/message-types/force-shutdown.d.ts +6 -0
  611. package/src/daemon/message-types/force-shutdown.d.ts.map +1 -0
  612. package/src/daemon/message-types/force-shutdown.js +11 -0
  613. package/src/daemon/message-types/get-context-file-data.d.ts +6 -0
  614. package/src/daemon/message-types/get-context-file-data.d.ts.map +1 -0
  615. package/src/daemon/message-types/get-context-file-data.js +11 -0
  616. package/src/daemon/message-types/get-files-in-directory.d.ts +7 -0
  617. package/src/daemon/message-types/get-files-in-directory.d.ts.map +1 -0
  618. package/src/daemon/message-types/get-files-in-directory.js +11 -0
  619. package/src/daemon/message-types/get-nx-workspace-files.d.ts +7 -0
  620. package/src/daemon/message-types/get-nx-workspace-files.d.ts.map +1 -0
  621. package/src/daemon/message-types/get-nx-workspace-files.js +11 -0
  622. package/src/daemon/message-types/get-registered-sync-generators.d.ts +6 -0
  623. package/src/daemon/message-types/get-registered-sync-generators.d.ts.map +1 -0
  624. package/src/daemon/message-types/get-registered-sync-generators.js +11 -0
  625. package/src/daemon/message-types/get-sync-generator-changes.d.ts +7 -0
  626. package/src/daemon/message-types/get-sync-generator-changes.d.ts.map +1 -0
  627. package/src/daemon/message-types/get-sync-generator-changes.js +11 -0
  628. package/src/daemon/message-types/glob.d.ts +15 -0
  629. package/src/daemon/message-types/glob.d.ts.map +1 -0
  630. package/src/daemon/message-types/glob.js +19 -0
  631. package/src/daemon/message-types/hash-glob.d.ts +14 -0
  632. package/src/daemon/message-types/hash-glob.d.ts.map +1 -0
  633. package/src/daemon/message-types/hash-glob.js +19 -0
  634. package/src/daemon/message-types/nx-console.d.ts +18 -0
  635. package/src/daemon/message-types/nx-console.d.ts.map +1 -0
  636. package/src/daemon/message-types/nx-console.js +19 -0
  637. package/src/daemon/message-types/register-project-graph-listener.d.ts +6 -0
  638. package/src/daemon/message-types/register-project-graph-listener.d.ts.map +1 -0
  639. package/src/daemon/message-types/register-project-graph-listener.js +11 -0
  640. package/src/daemon/message-types/run-tasks-execution-hooks.d.ts +14 -0
  641. package/src/daemon/message-types/run-tasks-execution-hooks.d.ts.map +1 -0
  642. package/src/daemon/message-types/run-tasks-execution-hooks.js +19 -0
  643. package/src/daemon/message-types/task-history.d.ts +20 -0
  644. package/src/daemon/message-types/task-history.d.ts.map +1 -0
  645. package/src/daemon/message-types/task-history.js +27 -0
  646. package/src/daemon/message-types/update-workspace-context.d.ts +9 -0
  647. package/src/daemon/message-types/update-workspace-context.d.ts.map +1 -0
  648. package/src/daemon/message-types/update-workspace-context.js +11 -0
  649. package/src/daemon/server/file-watching/changed-projects.d.ts +11 -0
  650. package/src/daemon/server/file-watching/changed-projects.d.ts.map +1 -0
  651. package/src/daemon/server/file-watching/changed-projects.js +44 -0
  652. package/src/daemon/server/file-watching/file-change-events.d.ts +8 -0
  653. package/src/daemon/server/file-watching/file-change-events.d.ts.map +1 -0
  654. package/src/daemon/server/file-watching/file-change-events.js +19 -0
  655. package/src/daemon/server/file-watching/file-watcher-sockets.d.ts +13 -0
  656. package/src/daemon/server/file-watching/file-watcher-sockets.d.ts.map +1 -0
  657. package/src/daemon/server/file-watching/file-watcher-sockets.js +66 -0
  658. package/src/daemon/server/handle-context-file-data.d.ts +3 -0
  659. package/src/daemon/server/handle-context-file-data.d.ts.map +1 -0
  660. package/src/daemon/server/handle-context-file-data.js +12 -0
  661. package/src/daemon/server/handle-flush-sync-generator-changes-to-disk.d.ts +3 -0
  662. package/src/daemon/server/handle-flush-sync-generator-changes-to-disk.d.ts.map +1 -0
  663. package/src/daemon/server/handle-flush-sync-generator-changes-to-disk.js +11 -0
  664. package/src/daemon/server/handle-force-shutdown.d.ts +6 -0
  665. package/src/daemon/server/handle-force-shutdown.d.ts.map +1 -0
  666. package/src/daemon/server/handle-force-shutdown.js +18 -0
  667. package/src/daemon/server/handle-get-files-in-directory.d.ts +3 -0
  668. package/src/daemon/server/handle-get-files-in-directory.d.ts.map +1 -0
  669. package/src/daemon/server/handle-get-files-in-directory.js +12 -0
  670. package/src/daemon/server/handle-get-registered-sync-generators.d.ts +3 -0
  671. package/src/daemon/server/handle-get-registered-sync-generators.d.ts.map +1 -0
  672. package/src/daemon/server/handle-get-registered-sync-generators.js +11 -0
  673. package/src/daemon/server/handle-get-sync-generator-changes.d.ts +3 -0
  674. package/src/daemon/server/handle-get-sync-generator-changes.d.ts.map +1 -0
  675. package/src/daemon/server/handle-get-sync-generator-changes.js +20 -0
  676. package/src/daemon/server/handle-glob.d.ts +4 -0
  677. package/src/daemon/server/handle-glob.d.ts.map +1 -0
  678. package/src/daemon/server/handle-glob.js +20 -0
  679. package/src/daemon/server/handle-hash-glob.d.ts +4 -0
  680. package/src/daemon/server/handle-hash-glob.d.ts.map +1 -0
  681. package/src/daemon/server/handle-hash-glob.js +20 -0
  682. package/src/daemon/server/handle-hash-tasks.d.ts +12 -0
  683. package/src/daemon/server/handle-hash-tasks.d.ts.map +1 -0
  684. package/src/daemon/server/handle-hash-tasks.js +28 -0
  685. package/src/daemon/server/handle-nx-console.d.ts +4 -0
  686. package/src/daemon/server/handle-nx-console.d.ts.map +1 -0
  687. package/src/daemon/server/handle-nx-console.js +54 -0
  688. package/src/daemon/server/handle-nx-workspace-files.d.ts +3 -0
  689. package/src/daemon/server/handle-nx-workspace-files.d.ts.map +1 -0
  690. package/src/daemon/server/handle-nx-workspace-files.js +12 -0
  691. package/src/daemon/server/handle-outputs-tracking.d.ts +16 -0
  692. package/src/daemon/server/handle-outputs-tracking.d.ts.map +1 -0
  693. package/src/daemon/server/handle-outputs-tracking.js +35 -0
  694. package/src/daemon/server/handle-process-in-background.d.ts +7 -0
  695. package/src/daemon/server/handle-process-in-background.d.ts.map +1 -0
  696. package/src/daemon/server/handle-process-in-background.js +32 -0
  697. package/src/daemon/server/handle-request-project-graph.d.ts +3 -0
  698. package/src/daemon/server/handle-request-project-graph.d.ts.map +1 -0
  699. package/src/daemon/server/handle-request-project-graph.js +36 -0
  700. package/src/daemon/server/handle-request-shutdown.d.ts +6 -0
  701. package/src/daemon/server/handle-request-shutdown.d.ts.map +1 -0
  702. package/src/daemon/server/handle-request-shutdown.js +27 -0
  703. package/src/daemon/server/handle-task-history.d.ts +14 -0
  704. package/src/daemon/server/handle-task-history.d.ts.map +1 -0
  705. package/src/daemon/server/handle-task-history.js +30 -0
  706. package/src/daemon/server/handle-tasks-execution-hooks.d.ts +20 -0
  707. package/src/daemon/server/handle-tasks-execution-hooks.d.ts.map +1 -0
  708. package/src/daemon/server/handle-tasks-execution-hooks.js +35 -0
  709. package/src/daemon/server/handle-update-workspace-context.d.ts +3 -0
  710. package/src/daemon/server/handle-update-workspace-context.d.ts.map +1 -0
  711. package/src/daemon/server/handle-update-workspace-context.js +11 -0
  712. package/src/daemon/server/nx-console-operations.d.ts +31 -0
  713. package/src/daemon/server/nx-console-operations.d.ts.map +1 -0
  714. package/src/daemon/server/nx-console-operations.js +135 -0
  715. package/src/daemon/server/outputs-tracking.d.ts +9 -0
  716. package/src/daemon/server/outputs-tracking.d.ts.map +1 -0
  717. package/src/daemon/server/outputs-tracking.js +93 -0
  718. package/src/daemon/server/project-graph-incremental-recomputation.d.ts +27 -0
  719. package/src/daemon/server/project-graph-incremental-recomputation.d.ts.map +1 -0
  720. package/src/daemon/server/project-graph-incremental-recomputation.js +369 -0
  721. package/src/daemon/server/project-graph-listener-sockets.d.ts +8 -0
  722. package/src/daemon/server/project-graph-listener-sockets.d.ts.map +1 -0
  723. package/src/daemon/server/project-graph-listener-sockets.js +25 -0
  724. package/src/daemon/server/server.d.ts +10 -0
  725. package/src/daemon/server/server.d.ts.map +1 -0
  726. package/src/daemon/server/server.js +463 -0
  727. package/src/daemon/server/shutdown-utils.d.ts +19 -0
  728. package/src/daemon/server/shutdown-utils.d.ts.map +1 -0
  729. package/src/daemon/server/shutdown-utils.js +151 -0
  730. package/src/daemon/server/start.d.ts +2 -0
  731. package/src/daemon/server/start.d.ts.map +1 -0
  732. package/src/daemon/server/start.js +17 -0
  733. package/src/daemon/server/sync-generators.d.ts +15 -0
  734. package/src/daemon/server/sync-generators.d.ts.map +1 -0
  735. package/src/daemon/server/sync-generators.js +368 -0
  736. package/src/daemon/server/watcher.d.ts +12 -0
  737. package/src/daemon/server/watcher.d.ts.map +1 -0
  738. package/src/daemon/server/watcher.js +97 -0
  739. package/src/daemon/socket-utils.d.ts +24 -0
  740. package/src/daemon/socket-utils.d.ts.map +1 -0
  741. package/src/daemon/socket-utils.js +96 -0
  742. package/src/daemon/tmp-dir.d.ts +13 -0
  743. package/src/daemon/tmp-dir.d.ts.map +1 -0
  744. package/src/daemon/tmp-dir.js +71 -0
  745. package/src/devkit-exports.d.ts +140 -0
  746. package/src/devkit-exports.d.ts.map +1 -0
  747. package/src/devkit-exports.js +140 -0
  748. package/src/devkit-internals.d.ts +33 -0
  749. package/src/devkit-internals.d.ts.map +1 -0
  750. package/src/devkit-internals.js +69 -0
  751. package/src/devkit-testing-exports.d.ts +3 -0
  752. package/src/devkit-testing-exports.d.ts.map +1 -0
  753. package/src/devkit-testing-exports.js +8 -0
  754. package/src/executors/noop/noop.impl.d.ts +4 -0
  755. package/src/executors/noop/noop.impl.d.ts.map +1 -0
  756. package/src/executors/noop/noop.impl.js +6 -0
  757. package/src/executors/noop/schema.json +10 -0
  758. package/src/executors/run-commands/run-commands.impl.d.ts +60 -0
  759. package/src/executors/run-commands/run-commands.impl.d.ts.map +1 -0
  760. package/src/executors/run-commands/run-commands.impl.js +247 -0
  761. package/src/executors/run-commands/running-tasks.d.ts +46 -0
  762. package/src/executors/run-commands/running-tasks.d.ts.map +1 -0
  763. package/src/executors/run-commands/running-tasks.js +496 -0
  764. package/src/executors/run-commands/schema.json +198 -0
  765. package/src/executors/run-script/run-script.impl.d.ts +9 -0
  766. package/src/executors/run-script/run-script.impl.d.ts.map +1 -0
  767. package/src/executors/run-script/run-script.impl.js +84 -0
  768. package/src/executors/run-script/schema.json +28 -0
  769. package/src/executors/utils/convert-nx-executor.d.ts +11 -0
  770. package/src/executors/utils/convert-nx-executor.d.ts.map +1 -0
  771. package/src/executors/utils/convert-nx-executor.js +83 -0
  772. package/src/generators/internal-utils/format-changed-files-with-prettier-if-available.d.ts +15 -0
  773. package/src/generators/internal-utils/format-changed-files-with-prettier-if-available.d.ts.map +1 -0
  774. package/src/generators/internal-utils/format-changed-files-with-prettier-if-available.js +68 -0
  775. package/src/generators/testing-utils/create-tree-with-empty-workspace.d.ts +12 -0
  776. package/src/generators/testing-utils/create-tree-with-empty-workspace.d.ts.map +1 -0
  777. package/src/generators/testing-utils/create-tree-with-empty-workspace.js +52 -0
  778. package/src/generators/testing-utils/create-tree.d.ts +6 -0
  779. package/src/generators/testing-utils/create-tree.d.ts.map +1 -0
  780. package/src/generators/testing-utils/create-tree.js +14 -0
  781. package/src/generators/tree.d.ts +126 -0
  782. package/src/generators/tree.d.ts.map +1 -0
  783. package/src/generators/tree.js +309 -0
  784. package/src/generators/utils/generate-files.d.ts +45 -0
  785. package/src/generators/utils/generate-files.d.ts.map +1 -0
  786. package/src/generators/utils/generate-files.js +113 -0
  787. package/src/generators/utils/glob.d.ts +23 -0
  788. package/src/generators/utils/glob.d.ts.map +1 -0
  789. package/src/generators/utils/glob.js +51 -0
  790. package/src/generators/utils/json.d.ts +29 -0
  791. package/src/generators/utils/json.d.ts.map +1 -0
  792. package/src/generators/utils/json.js +48 -0
  793. package/src/generators/utils/nx-json.d.ts +11 -0
  794. package/src/generators/utils/nx-json.d.ts.map +1 -0
  795. package/src/generators/utils/nx-json.js +52 -0
  796. package/src/generators/utils/project-configuration.d.ts +43 -0
  797. package/src/generators/utils/project-configuration.d.ts.map +1 -0
  798. package/src/generators/utils/project-configuration.js +307 -0
  799. package/src/hasher/create-task-hasher.d.ts +5 -0
  800. package/src/hasher/create-task-hasher.d.ts.map +1 -0
  801. package/src/hasher/create-task-hasher.js +15 -0
  802. package/src/hasher/file-hasher.d.ts +4 -0
  803. package/src/hasher/file-hasher.d.ts.map +1 -0
  804. package/src/hasher/file-hasher.js +23 -0
  805. package/src/hasher/hash-plan-inspector.d.ts +26 -0
  806. package/src/hasher/hash-plan-inspector.d.ts.map +1 -0
  807. package/src/hasher/hash-plan-inspector.js +54 -0
  808. package/src/hasher/hash-task.d.ts +10 -0
  809. package/src/hasher/hash-task.d.ts.map +1 -0
  810. package/src/hasher/hash-task.js +161 -0
  811. package/src/hasher/native-task-hasher-impl.d.ts +19 -0
  812. package/src/hasher/native-task-hasher-impl.d.ts.map +1 -0
  813. package/src/hasher/native-task-hasher-impl.js +37 -0
  814. package/src/hasher/task-hasher.d.ts +128 -0
  815. package/src/hasher/task-hasher.d.ts.map +1 -0
  816. package/src/hasher/task-hasher.js +242 -0
  817. package/src/index.d.ts +2 -0
  818. package/src/index.d.ts.map +1 -0
  819. package/src/index.js +5 -0
  820. package/src/migrations/update-15-0-0/prefix-outputs.d.ts +3 -0
  821. package/src/migrations/update-15-0-0/prefix-outputs.d.ts.map +1 -0
  822. package/src/migrations/update-15-0-0/prefix-outputs.js +49 -0
  823. package/src/migrations/update-16-0-0/remove-nrwl-cli.d.ts +3 -0
  824. package/src/migrations/update-16-0-0/remove-nrwl-cli.d.ts.map +1 -0
  825. package/src/migrations/update-16-0-0/remove-nrwl-cli.js +16 -0
  826. package/src/migrations/update-16-0-0/update-depends-on-to-tokens.d.ts +3 -0
  827. package/src/migrations/update-16-0-0/update-depends-on-to-tokens.d.ts.map +1 -0
  828. package/src/migrations/update-16-0-0/update-depends-on-to-tokens.js +97 -0
  829. package/src/migrations/update-16-0-0/update-nx-cloud-runner.d.ts +3 -0
  830. package/src/migrations/update-16-0-0/update-nx-cloud-runner.d.ts.map +1 -0
  831. package/src/migrations/update-16-0-0/update-nx-cloud-runner.js +29 -0
  832. package/src/migrations/update-16-2-0/remove-run-commands-output-path.d.ts +3 -0
  833. package/src/migrations/update-16-2-0/remove-run-commands-output-path.d.ts.map +1 -0
  834. package/src/migrations/update-16-2-0/remove-run-commands-output-path.js +45 -0
  835. package/src/migrations/update-16-8-0/escape-dollar-sign-env-variables.d.ts +13 -0
  836. package/src/migrations/update-16-8-0/escape-dollar-sign-env-variables.d.ts.map +1 -0
  837. package/src/migrations/update-16-8-0/escape-dollar-sign-env-variables.js +67 -0
  838. package/src/migrations/update-17-0-0/move-cache-directory.d.ts +3 -0
  839. package/src/migrations/update-17-0-0/move-cache-directory.d.ts.map +1 -0
  840. package/src/migrations/update-17-0-0/move-cache-directory.js +35 -0
  841. package/src/migrations/update-17-0-0/rm-default-collection-npm-scope.d.ts +3 -0
  842. package/src/migrations/update-17-0-0/rm-default-collection-npm-scope.d.ts.map +1 -0
  843. package/src/migrations/update-17-0-0/rm-default-collection-npm-scope.js +72 -0
  844. package/src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options.d.ts +3 -0
  845. package/src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options.d.ts.map +1 -0
  846. package/src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options.js +122 -0
  847. package/src/migrations/update-17-2-0/move-default-base.d.ts +6 -0
  848. package/src/migrations/update-17-2-0/move-default-base.d.ts.map +1 -0
  849. package/src/migrations/update-17-2-0/move-default-base.js +21 -0
  850. package/src/migrations/update-17-3-0/nx-release-path.d.ts +4 -0
  851. package/src/migrations/update-17-3-0/nx-release-path.d.ts.map +1 -0
  852. package/src/migrations/update-17-3-0/nx-release-path.js +47 -0
  853. package/src/migrations/update-17-3-0/update-nxw.d.ts +3 -0
  854. package/src/migrations/update-17-3-0/update-nxw.d.ts.map +1 -0
  855. package/src/migrations/update-17-3-0/update-nxw.js +7 -0
  856. package/src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces.d.ts +3 -0
  857. package/src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces.d.ts.map +1 -0
  858. package/src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces.js +11 -0
  859. package/src/migrations/update-19-2-0/move-workspace-data-directory.d.ts +5 -0
  860. package/src/migrations/update-19-2-0/move-workspace-data-directory.d.ts.map +1 -0
  861. package/src/migrations/update-19-2-0/move-workspace-data-directory.js +33 -0
  862. package/src/migrations/update-19-2-4/set-project-name.d.ts +3 -0
  863. package/src/migrations/update-19-2-4/set-project-name.d.ts.map +1 -0
  864. package/src/migrations/update-19-2-4/set-project-name.js +34 -0
  865. package/src/migrations/update-20-0-0/move-use-daemon-process.d.ts +3 -0
  866. package/src/migrations/update-20-0-0/move-use-daemon-process.d.ts.map +1 -0
  867. package/src/migrations/update-20-0-0/move-use-daemon-process.js +25 -0
  868. package/src/migrations/update-20-0-1/use-legacy-cache.d.ts +3 -0
  869. package/src/migrations/update-20-0-1/use-legacy-cache.d.ts.map +1 -0
  870. package/src/migrations/update-20-0-1/use-legacy-cache.js +20 -0
  871. package/src/migrations/update-21-0-0/release-changelog-config-changes.d.ts +3 -0
  872. package/src/migrations/update-21-0-0/release-changelog-config-changes.d.ts.map +1 -0
  873. package/src/migrations/update-21-0-0/release-changelog-config-changes.js +38 -0
  874. package/src/migrations/update-21-0-0/release-version-config-changes.d.ts +3 -0
  875. package/src/migrations/update-21-0-0/release-version-config-changes.d.ts.map +1 -0
  876. package/src/migrations/update-21-0-0/release-version-config-changes.js +101 -0
  877. package/src/migrations/update-21-0-0/remove-custom-tasks-runner.d.ts +3 -0
  878. package/src/migrations/update-21-0-0/remove-custom-tasks-runner.d.ts.map +1 -0
  879. package/src/migrations/update-21-0-0/remove-custom-tasks-runner.js +38 -0
  880. package/src/migrations/update-21-0-0/remove-legacy-cache.d.ts +3 -0
  881. package/src/migrations/update-21-0-0/remove-legacy-cache.d.ts.map +1 -0
  882. package/src/migrations/update-21-0-0/remove-legacy-cache.js +17 -0
  883. package/src/migrations/update-22-0-0/consolidate-release-tag-config.d.ts +3 -0
  884. package/src/migrations/update-22-0-0/consolidate-release-tag-config.d.ts.map +1 -0
  885. package/src/migrations/update-22-0-0/consolidate-release-tag-config.js +100 -0
  886. package/src/migrations/update-22-0-0/release-version-config-changes.d.ts +3 -0
  887. package/src/migrations/update-22-0-0/release-version-config-changes.d.ts.map +1 -0
  888. package/src/migrations/update-22-0-0/release-version-config-changes.js +101 -0
  889. package/src/migrations/update-22-1-0/update-nx-wrapper.d.ts +3 -0
  890. package/src/migrations/update-22-1-0/update-nx-wrapper.d.ts.map +1 -0
  891. package/src/migrations/update-22-1-0/update-nx-wrapper.js +7 -0
  892. package/src/migrations/update-22-7-0/add-polygraph-to-git-ignore.d.ts +3 -0
  893. package/src/migrations/update-22-7-0/add-polygraph-to-git-ignore.d.ts.map +1 -0
  894. package/src/migrations/update-22-7-0/add-polygraph-to-git-ignore.js +14 -0
  895. package/src/native/assert-supported-platform.d.ts +2 -0
  896. package/src/native/assert-supported-platform.d.ts.map +1 -0
  897. package/src/native/assert-supported-platform.js +38 -0
  898. package/src/native/browser.js +1 -0
  899. package/src/native/index.js +173 -0
  900. package/src/native/native-bindings.js +412 -0
  901. package/src/native/native-file-cache-location.d.ts +2 -0
  902. package/src/native/native-file-cache-location.d.ts.map +1 -0
  903. package/src/native/native-file-cache-location.js +23 -0
  904. package/src/native/nx.wasi-browser.js +132 -0
  905. package/src/native/nx.wasi.cjs +173 -0
  906. package/src/native/nx.wasm32-wasi.wasm +0 -0
  907. package/src/native/tests/__fixtures__/file-lock.fixture.js +20 -0
  908. package/src/native/transform-objects.d.ts +4 -0
  909. package/src/native/transform-objects.d.ts.map +1 -0
  910. package/src/native/transform-objects.js +51 -0
  911. package/src/native/wasi-worker-browser.mjs +32 -0
  912. package/src/native/wasi-worker.mjs +63 -0
  913. package/src/nx-cloud/debug-logger.d.ts +2 -0
  914. package/src/nx-cloud/debug-logger.d.ts.map +1 -0
  915. package/src/nx-cloud/debug-logger.js +8 -0
  916. package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.d.ts +15 -0
  917. package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.d.ts.map +1 -0
  918. package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.js +159 -0
  919. package/src/nx-cloud/generators/connect-to-nx-cloud/schema.json +41 -0
  920. package/src/nx-cloud/models/onboarding-status.d.ts +2 -0
  921. package/src/nx-cloud/models/onboarding-status.d.ts.map +1 -0
  922. package/src/nx-cloud/models/onboarding-status.js +2 -0
  923. package/src/nx-cloud/nx-cloud-tasks-runner-shell.d.ts +17 -0
  924. package/src/nx-cloud/nx-cloud-tasks-runner-shell.d.ts.map +1 -0
  925. package/src/nx-cloud/nx-cloud-tasks-runner-shell.js +41 -0
  926. package/src/nx-cloud/resolution-helpers.d.ts +2 -0
  927. package/src/nx-cloud/resolution-helpers.d.ts.map +1 -0
  928. package/src/nx-cloud/resolution-helpers.js +19 -0
  929. package/src/nx-cloud/update-manager.d.ts +21 -0
  930. package/src/nx-cloud/update-manager.d.ts.map +1 -0
  931. package/src/nx-cloud/update-manager.js +253 -0
  932. package/src/nx-cloud/utilities/axios.d.ts +3 -0
  933. package/src/nx-cloud/utilities/axios.d.ts.map +1 -0
  934. package/src/nx-cloud/utilities/axios.js +24 -0
  935. package/src/nx-cloud/utilities/client.d.ts +11 -0
  936. package/src/nx-cloud/utilities/client.d.ts.map +1 -0
  937. package/src/nx-cloud/utilities/client.js +42 -0
  938. package/src/nx-cloud/utilities/environment.d.ts +4 -0
  939. package/src/nx-cloud/utilities/environment.d.ts.map +1 -0
  940. package/src/nx-cloud/utilities/environment.js +47 -0
  941. package/src/nx-cloud/utilities/get-cloud-options.d.ts +6 -0
  942. package/src/nx-cloud/utilities/get-cloud-options.d.ts.map +1 -0
  943. package/src/nx-cloud/utilities/get-cloud-options.js +23 -0
  944. package/src/nx-cloud/utilities/is-workspace-claimed.d.ts +2 -0
  945. package/src/nx-cloud/utilities/is-workspace-claimed.d.ts.map +1 -0
  946. package/src/nx-cloud/utilities/is-workspace-claimed.js +25 -0
  947. package/src/nx-cloud/utilities/onboarding.d.ts +6 -0
  948. package/src/nx-cloud/utilities/onboarding.d.ts.map +1 -0
  949. package/src/nx-cloud/utilities/onboarding.js +28 -0
  950. package/src/nx-cloud/utilities/url-shorten.d.ts +6 -0
  951. package/src/nx-cloud/utilities/url-shorten.d.ts.map +1 -0
  952. package/src/nx-cloud/utilities/url-shorten.js +84 -0
  953. package/src/plugins/js/hasher/hasher.d.ts +6 -0
  954. package/src/plugins/js/hasher/hasher.d.ts.map +1 -0
  955. package/src/plugins/js/hasher/hasher.js +51 -0
  956. package/src/plugins/js/index.d.ts +5 -0
  957. package/src/plugins/js/index.d.ts.map +1 -0
  958. package/src/plugins/js/index.js +165 -0
  959. package/src/plugins/js/lock-file/bun-parser.d.ts +15 -0
  960. package/src/plugins/js/lock-file/bun-parser.d.ts.map +1 -0
  961. package/src/plugins/js/lock-file/bun-parser.js +936 -0
  962. package/src/plugins/js/lock-file/lock-file.d.ts +39 -0
  963. package/src/plugins/js/lock-file/lock-file.d.ts.map +1 -0
  964. package/src/plugins/js/lock-file/lock-file.js +253 -0
  965. package/src/plugins/js/lock-file/npm-parser.d.ts +11 -0
  966. package/src/plugins/js/lock-file/npm-parser.d.ts.map +1 -0
  967. package/src/plugins/js/lock-file/npm-parser.js +514 -0
  968. package/src/plugins/js/lock-file/pnpm-parser.d.ts +11 -0
  969. package/src/plugins/js/lock-file/pnpm-parser.d.ts.map +1 -0
  970. package/src/plugins/js/lock-file/pnpm-parser.js +613 -0
  971. package/src/plugins/js/lock-file/project-graph-pruning.d.ts +12 -0
  972. package/src/plugins/js/lock-file/project-graph-pruning.d.ts.map +1 -0
  973. package/src/plugins/js/lock-file/project-graph-pruning.js +202 -0
  974. package/src/plugins/js/lock-file/utils/package-json.d.ts +11 -0
  975. package/src/plugins/js/lock-file/utils/package-json.d.ts.map +1 -0
  976. package/src/plugins/js/lock-file/utils/package-json.js +36 -0
  977. package/src/plugins/js/lock-file/utils/pnpm-normalizer.d.ts +21 -0
  978. package/src/plugins/js/lock-file/utils/pnpm-normalizer.d.ts.map +1 -0
  979. package/src/plugins/js/lock-file/utils/pnpm-normalizer.js +854 -0
  980. package/src/plugins/js/lock-file/yarn-parser.d.ts +11 -0
  981. package/src/plugins/js/lock-file/yarn-parser.d.ts.map +1 -0
  982. package/src/plugins/js/lock-file/yarn-parser.js +509 -0
  983. package/src/plugins/js/package-json/create-package-json.d.ts +30 -0
  984. package/src/plugins/js/package-json/create-package-json.d.ts.map +1 -0
  985. package/src/plugins/js/package-json/create-package-json.js +261 -0
  986. package/src/plugins/js/project-graph/affected/lock-file-changes.d.ts +6 -0
  987. package/src/plugins/js/project-graph/affected/lock-file-changes.d.ts.map +1 -0
  988. package/src/plugins/js/project-graph/affected/lock-file-changes.js +72 -0
  989. package/src/plugins/js/project-graph/affected/npm-packages.d.ts +5 -0
  990. package/src/plugins/js/project-graph/affected/npm-packages.d.ts.map +1 -0
  991. package/src/plugins/js/project-graph/affected/npm-packages.js +93 -0
  992. package/src/plugins/js/project-graph/affected/touched-projects.d.ts +3 -0
  993. package/src/plugins/js/project-graph/affected/touched-projects.d.ts.map +1 -0
  994. package/src/plugins/js/project-graph/affected/touched-projects.js +18 -0
  995. package/src/plugins/js/project-graph/affected/tsconfig-json-changes.d.ts +5 -0
  996. package/src/plugins/js/project-graph/affected/tsconfig-json-changes.d.ts.map +1 -0
  997. package/src/plugins/js/project-graph/affected/tsconfig-json-changes.js +63 -0
  998. package/src/plugins/js/project-graph/build-dependencies/build-dependencies.d.ts +7 -0
  999. package/src/plugins/js/project-graph/build-dependencies/build-dependencies.d.ts.map +1 -0
  1000. package/src/plugins/js/project-graph/build-dependencies/build-dependencies.js +45 -0
  1001. package/src/plugins/js/project-graph/build-dependencies/explicit-package-json-dependencies.d.ts +5 -0
  1002. package/src/plugins/js/project-graph/build-dependencies/explicit-package-json-dependencies.d.ts.map +1 -0
  1003. package/src/plugins/js/project-graph/build-dependencies/explicit-package-json-dependencies.js +86 -0
  1004. package/src/plugins/js/project-graph/build-dependencies/explicit-project-dependencies.d.ts +5 -0
  1005. package/src/plugins/js/project-graph/build-dependencies/explicit-project-dependencies.d.ts.map +1 -0
  1006. package/src/plugins/js/project-graph/build-dependencies/explicit-project-dependencies.js +75 -0
  1007. package/src/plugins/js/project-graph/build-dependencies/strip-source-code.d.ts +8 -0
  1008. package/src/plugins/js/project-graph/build-dependencies/strip-source-code.d.ts.map +1 -0
  1009. package/src/plugins/js/project-graph/build-dependencies/strip-source-code.js +155 -0
  1010. package/src/plugins/js/project-graph/build-dependencies/target-project-locator.d.ts +75 -0
  1011. package/src/plugins/js/project-graph/build-dependencies/target-project-locator.d.ts.map +1 -0
  1012. package/src/plugins/js/project-graph/build-dependencies/target-project-locator.js +429 -0
  1013. package/src/plugins/js/project-graph/build-dependencies/typescript-import-locator.d.ts +17 -0
  1014. package/src/plugins/js/project-graph/build-dependencies/typescript-import-locator.d.ts.map +1 -0
  1015. package/src/plugins/js/project-graph/build-dependencies/typescript-import-locator.js +120 -0
  1016. package/src/plugins/js/project-graph/build-nodes/build-npm-package-nodes.d.ts +3 -0
  1017. package/src/plugins/js/project-graph/build-nodes/build-npm-package-nodes.d.ts.map +1 -0
  1018. package/src/plugins/js/project-graph/build-nodes/build-npm-package-nodes.js +31 -0
  1019. package/src/plugins/js/utils/config.d.ts +3 -0
  1020. package/src/plugins/js/utils/config.d.ts.map +1 -0
  1021. package/src/plugins/js/utils/config.js +61 -0
  1022. package/src/plugins/js/utils/get-workspace-packages-from-graph.d.ts +3 -0
  1023. package/src/plugins/js/utils/get-workspace-packages-from-graph.d.ts.map +1 -0
  1024. package/src/plugins/js/utils/get-workspace-packages-from-graph.js +13 -0
  1025. package/src/plugins/js/utils/packages.d.ts +9 -0
  1026. package/src/plugins/js/utils/packages.d.ts.map +1 -0
  1027. package/src/plugins/js/utils/packages.js +91 -0
  1028. package/src/plugins/js/utils/register.d.ts +160 -0
  1029. package/src/plugins/js/utils/register.d.ts.map +1 -0
  1030. package/src/plugins/js/utils/register.js +406 -0
  1031. package/src/plugins/js/utils/resolve-relative-to-dir.d.ts +6 -0
  1032. package/src/plugins/js/utils/resolve-relative-to-dir.d.ts.map +1 -0
  1033. package/src/plugins/js/utils/resolve-relative-to-dir.js +17 -0
  1034. package/src/plugins/js/utils/typescript.d.ts +17 -0
  1035. package/src/plugins/js/utils/typescript.d.ts.map +1 -0
  1036. package/src/plugins/js/utils/typescript.js +103 -0
  1037. package/src/plugins/js/versions.d.ts +2 -0
  1038. package/src/plugins/js/versions.d.ts.map +1 -0
  1039. package/src/plugins/js/versions.js +4 -0
  1040. package/src/plugins/package-json/create-nodes.d.ts +28 -0
  1041. package/src/plugins/package-json/create-nodes.d.ts.map +1 -0
  1042. package/src/plugins/package-json/create-nodes.js +239 -0
  1043. package/src/plugins/package-json/index.d.ts +3 -0
  1044. package/src/plugins/package-json/index.d.ts.map +1 -0
  1045. package/src/plugins/package-json/index.js +6 -0
  1046. package/src/plugins/project-json/build-nodes/project-json.d.ts +6 -0
  1047. package/src/plugins/project-json/build-nodes/project-json.d.ts.map +1 -0
  1048. package/src/plugins/project-json/build-nodes/project-json.js +33 -0
  1049. package/src/project-graph/affected/affected-project-graph-models.d.ts +12 -0
  1050. package/src/project-graph/affected/affected-project-graph-models.d.ts.map +1 -0
  1051. package/src/project-graph/affected/affected-project-graph-models.js +2 -0
  1052. package/src/project-graph/affected/affected-project-graph.d.ts +5 -0
  1053. package/src/project-graph/affected/affected-project-graph.d.ts.map +1 -0
  1054. package/src/project-graph/affected/affected-project-graph.js +90 -0
  1055. package/src/project-graph/affected/locators/project-glob-changes.d.ts +3 -0
  1056. package/src/project-graph/affected/locators/project-glob-changes.d.ts.map +1 -0
  1057. package/src/project-graph/affected/locators/project-glob-changes.js +43 -0
  1058. package/src/project-graph/affected/locators/workspace-json-changes.d.ts +5 -0
  1059. package/src/project-graph/affected/locators/workspace-json-changes.d.ts.map +1 -0
  1060. package/src/project-graph/affected/locators/workspace-json-changes.js +47 -0
  1061. package/src/project-graph/affected/locators/workspace-projects.d.ts +4 -0
  1062. package/src/project-graph/affected/locators/workspace-projects.d.ts.map +1 -0
  1063. package/src/project-graph/affected/locators/workspace-projects.js +74 -0
  1064. package/src/project-graph/build-project-graph.d.ts +24 -0
  1065. package/src/project-graph/build-project-graph.d.ts.map +1 -0
  1066. package/src/project-graph/build-project-graph.js +322 -0
  1067. package/src/project-graph/error-types.d.ts +140 -0
  1068. package/src/project-graph/error-types.d.ts.map +1 -0
  1069. package/src/project-graph/error-types.js +399 -0
  1070. package/src/project-graph/file-map-utils.d.ts +16 -0
  1071. package/src/project-graph/file-map-utils.d.ts.map +1 -0
  1072. package/src/project-graph/file-map-utils.js +55 -0
  1073. package/src/project-graph/file-utils.d.ts +25 -0
  1074. package/src/project-graph/file-utils.d.ts.map +1 -0
  1075. package/src/project-graph/file-utils.js +112 -0
  1076. package/src/project-graph/nx-deps-cache.d.ts +63 -0
  1077. package/src/project-graph/nx-deps-cache.d.ts.map +1 -0
  1078. package/src/project-graph/nx-deps-cache.js +331 -0
  1079. package/src/project-graph/operators.d.ts +13 -0
  1080. package/src/project-graph/operators.d.ts.map +1 -0
  1081. package/src/project-graph/operators.js +114 -0
  1082. package/src/project-graph/plugins/get-plugins.d.ts +5 -0
  1083. package/src/project-graph/plugins/get-plugins.d.ts.map +1 -0
  1084. package/src/project-graph/plugins/get-plugins.js +216 -0
  1085. package/src/project-graph/plugins/in-process-loader.d.ts +11 -0
  1086. package/src/project-graph/plugins/in-process-loader.d.ts.map +1 -0
  1087. package/src/project-graph/plugins/in-process-loader.js +60 -0
  1088. package/src/project-graph/plugins/index.d.ts +5 -0
  1089. package/src/project-graph/plugins/index.d.ts.map +1 -0
  1090. package/src/project-graph/plugins/index.js +12 -0
  1091. package/src/project-graph/plugins/isolation/enabled.d.ts +2 -0
  1092. package/src/project-graph/plugins/isolation/enabled.d.ts.map +1 -0
  1093. package/src/project-graph/plugins/isolation/enabled.js +22 -0
  1094. package/src/project-graph/plugins/isolation/index.d.ts +2 -0
  1095. package/src/project-graph/plugins/isolation/index.d.ts.map +1 -0
  1096. package/src/project-graph/plugins/isolation/index.js +5 -0
  1097. package/src/project-graph/plugins/isolation/isolated-plugin.d.ts +60 -0
  1098. package/src/project-graph/plugins/isolation/isolated-plugin.d.ts.map +1 -0
  1099. package/src/project-graph/plugins/isolation/isolated-plugin.js +436 -0
  1100. package/src/project-graph/plugins/isolation/load-isolated-plugin.d.ts +4 -0
  1101. package/src/project-graph/plugins/isolation/load-isolated-plugin.d.ts.map +1 -0
  1102. package/src/project-graph/plugins/isolation/load-isolated-plugin.js +24 -0
  1103. package/src/project-graph/plugins/isolation/message-types.d.ts +60 -0
  1104. package/src/project-graph/plugins/isolation/message-types.d.ts.map +1 -0
  1105. package/src/project-graph/plugins/isolation/message-types.js +9 -0
  1106. package/src/project-graph/plugins/isolation/messaging.d.ts +127 -0
  1107. package/src/project-graph/plugins/isolation/messaging.d.ts.map +1 -0
  1108. package/src/project-graph/plugins/isolation/messaging.js +71 -0
  1109. package/src/project-graph/plugins/isolation/plugin-lifecycle-manager.d.ts +65 -0
  1110. package/src/project-graph/plugins/isolation/plugin-lifecycle-manager.d.ts.map +1 -0
  1111. package/src/project-graph/plugins/isolation/plugin-lifecycle-manager.js +149 -0
  1112. package/src/project-graph/plugins/isolation/plugin-worker.d.ts +2 -0
  1113. package/src/project-graph/plugins/isolation/plugin-worker.d.ts.map +1 -0
  1114. package/src/project-graph/plugins/isolation/plugin-worker.js +182 -0
  1115. package/src/project-graph/plugins/load-resolved-plugin.d.ts +4 -0
  1116. package/src/project-graph/plugins/load-resolved-plugin.d.ts.map +1 -0
  1117. package/src/project-graph/plugins/load-resolved-plugin.js +22 -0
  1118. package/src/project-graph/plugins/loaded-nx-plugin.d.ts +26 -0
  1119. package/src/project-graph/plugins/loaded-nx-plugin.d.ts.map +1 -0
  1120. package/src/project-graph/plugins/loaded-nx-plugin.js +86 -0
  1121. package/src/project-graph/plugins/public-api.d.ts +121 -0
  1122. package/src/project-graph/plugins/public-api.d.ts.map +1 -0
  1123. package/src/project-graph/plugins/public-api.js +4 -0
  1124. package/src/project-graph/plugins/resolve-plugin.d.ts +16 -0
  1125. package/src/project-graph/plugins/resolve-plugin.d.ts.map +1 -0
  1126. package/src/project-graph/plugins/resolve-plugin.js +136 -0
  1127. package/src/project-graph/plugins/tasks-execution-hooks.d.ts +4 -0
  1128. package/src/project-graph/plugins/tasks-execution-hooks.d.ts.map +1 -0
  1129. package/src/project-graph/plugins/tasks-execution-hooks.js +65 -0
  1130. package/src/project-graph/plugins/transpiler.d.ts +9 -0
  1131. package/src/project-graph/plugins/transpiler.d.ts.map +1 -0
  1132. package/src/project-graph/plugins/transpiler.js +47 -0
  1133. package/src/project-graph/plugins/utils.d.ts +5 -0
  1134. package/src/project-graph/plugins/utils.d.ts.map +1 -0
  1135. package/src/project-graph/plugins/utils.js +26 -0
  1136. package/src/project-graph/project-graph-builder.d.ts +134 -0
  1137. package/src/project-graph/project-graph-builder.d.ts.map +1 -0
  1138. package/src/project-graph/project-graph-builder.js +379 -0
  1139. package/src/project-graph/project-graph.d.ts +55 -0
  1140. package/src/project-graph/project-graph.d.ts.map +1 -0
  1141. package/src/project-graph/project-graph.js +367 -0
  1142. package/src/project-graph/utils/build-all-workspace-files.d.ts +3 -0
  1143. package/src/project-graph/utils/build-all-workspace-files.d.ts.map +1 -0
  1144. package/src/project-graph/utils/build-all-workspace-files.js +14 -0
  1145. package/src/project-graph/utils/find-project-for-path.d.ts +21 -0
  1146. package/src/project-graph/utils/find-project-for-path.d.ts.map +1 -0
  1147. package/src/project-graph/utils/find-project-for-path.js +55 -0
  1148. package/src/project-graph/utils/implicit-project-dependencies.d.ts +4 -0
  1149. package/src/project-graph/utils/implicit-project-dependencies.d.ts.map +1 -0
  1150. package/src/project-graph/utils/implicit-project-dependencies.js +18 -0
  1151. package/src/project-graph/utils/normalize-project-nodes.d.ts +7 -0
  1152. package/src/project-graph/utils/normalize-project-nodes.d.ts.map +1 -0
  1153. package/src/project-graph/utils/normalize-project-nodes.js +117 -0
  1154. package/src/project-graph/utils/project-configuration-utils.d.ts +75 -0
  1155. package/src/project-graph/utils/project-configuration-utils.d.ts.map +1 -0
  1156. package/src/project-graph/utils/project-configuration-utils.js +909 -0
  1157. package/src/project-graph/utils/retrieve-workspace-files.d.ts +27 -0
  1158. package/src/project-graph/utils/retrieve-workspace-files.d.ts.map +1 -0
  1159. package/src/project-graph/utils/retrieve-workspace-files.js +82 -0
  1160. package/src/tasks-runner/batch/batch-messages.d.ts +36 -0
  1161. package/src/tasks-runner/batch/batch-messages.d.ts.map +1 -0
  1162. package/src/tasks-runner/batch/batch-messages.js +9 -0
  1163. package/src/tasks-runner/batch/run-batch.d.ts +2 -0
  1164. package/src/tasks-runner/batch/run-batch.d.ts.map +1 -0
  1165. package/src/tasks-runner/batch/run-batch.js +75 -0
  1166. package/src/tasks-runner/cache.d.ts +91 -0
  1167. package/src/tasks-runner/cache.d.ts.map +1 -0
  1168. package/src/tasks-runner/cache.js +553 -0
  1169. package/src/tasks-runner/create-task-graph.d.ts +43 -0
  1170. package/src/tasks-runner/create-task-graph.d.ts.map +1 -0
  1171. package/src/tasks-runner/create-task-graph.js +313 -0
  1172. package/src/tasks-runner/default-tasks-runner.d.ts +28 -0
  1173. package/src/tasks-runner/default-tasks-runner.d.ts.map +1 -0
  1174. package/src/tasks-runner/default-tasks-runner.js +71 -0
  1175. package/src/tasks-runner/fork.d.ts +2 -0
  1176. package/src/tasks-runner/fork.d.ts.map +1 -0
  1177. package/src/tasks-runner/fork.js +73 -0
  1178. package/src/tasks-runner/forked-process-task-runner.d.ts +43 -0
  1179. package/src/tasks-runner/forked-process-task-runner.d.ts.map +1 -0
  1180. package/src/tasks-runner/forked-process-task-runner.js +312 -0
  1181. package/src/tasks-runner/init-tasks-runner.d.ts +23 -0
  1182. package/src/tasks-runner/init-tasks-runner.d.ts.map +1 -0
  1183. package/src/tasks-runner/init-tasks-runner.js +143 -0
  1184. package/src/tasks-runner/is-tui-enabled.d.ts +19 -0
  1185. package/src/tasks-runner/is-tui-enabled.d.ts.map +1 -0
  1186. package/src/tasks-runner/is-tui-enabled.js +91 -0
  1187. package/src/tasks-runner/life-cycle.d.ts +70 -0
  1188. package/src/tasks-runner/life-cycle.d.ts.map +1 -0
  1189. package/src/tasks-runner/life-cycle.js +134 -0
  1190. package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.d.ts +26 -0
  1191. package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.d.ts.map +1 -0
  1192. package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.js +364 -0
  1193. package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.d.ts +25 -0
  1194. package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.d.ts.map +1 -0
  1195. package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.js +236 -0
  1196. package/src/tasks-runner/life-cycles/empty-terminal-output-life-cycle.d.ts +6 -0
  1197. package/src/tasks-runner/life-cycles/empty-terminal-output-life-cycle.d.ts.map +1 -0
  1198. package/src/tasks-runner/life-cycles/empty-terminal-output-life-cycle.js +16 -0
  1199. package/src/tasks-runner/life-cycles/formatting-utils.d.ts +4 -0
  1200. package/src/tasks-runner/life-cycles/formatting-utils.d.ts.map +1 -0
  1201. package/src/tasks-runner/life-cycles/formatting-utils.js +55 -0
  1202. package/src/tasks-runner/life-cycles/invoke-runner-terminal-output-life-cycle.d.ts +14 -0
  1203. package/src/tasks-runner/life-cycles/invoke-runner-terminal-output-life-cycle.d.ts.map +1 -0
  1204. package/src/tasks-runner/life-cycles/invoke-runner-terminal-output-life-cycle.js +67 -0
  1205. package/src/tasks-runner/life-cycles/pretty-time.d.ts +5 -0
  1206. package/src/tasks-runner/life-cycles/pretty-time.d.ts.map +1 -0
  1207. package/src/tasks-runner/life-cycles/pretty-time.js +73 -0
  1208. package/src/tasks-runner/life-cycles/static-run-many-terminal-output-life-cycle.d.ts +30 -0
  1209. package/src/tasks-runner/life-cycles/static-run-many-terminal-output-life-cycle.d.ts.map +1 -0
  1210. package/src/tasks-runner/life-cycles/static-run-many-terminal-output-life-cycle.js +109 -0
  1211. package/src/tasks-runner/life-cycles/static-run-one-terminal-output-life-cycle.d.ts +29 -0
  1212. package/src/tasks-runner/life-cycles/static-run-one-terminal-output-life-cycle.d.ts.map +1 -0
  1213. package/src/tasks-runner/life-cycles/static-run-one-terminal-output-life-cycle.js +97 -0
  1214. package/src/tasks-runner/life-cycles/store-run-information-life-cycle.d.ts +18 -0
  1215. package/src/tasks-runner/life-cycles/store-run-information-life-cycle.d.ts.map +1 -0
  1216. package/src/tasks-runner/life-cycles/store-run-information-life-cycle.js +87 -0
  1217. package/src/tasks-runner/life-cycles/task-history-life-cycle-old.d.ts +13 -0
  1218. package/src/tasks-runner/life-cycles/task-history-life-cycle-old.d.ts.map +1 -0
  1219. package/src/tasks-runner/life-cycles/task-history-life-cycle-old.js +79 -0
  1220. package/src/tasks-runner/life-cycles/task-history-life-cycle.d.ts +16 -0
  1221. package/src/tasks-runner/life-cycles/task-history-life-cycle.d.ts.map +1 -0
  1222. package/src/tasks-runner/life-cycles/task-history-life-cycle.js +96 -0
  1223. package/src/tasks-runner/life-cycles/task-profiling-life-cycle.d.ts +15 -0
  1224. package/src/tasks-runner/life-cycles/task-profiling-life-cycle.d.ts.map +1 -0
  1225. package/src/tasks-runner/life-cycles/task-profiling-life-cycle.js +73 -0
  1226. package/src/tasks-runner/life-cycles/task-results-life-cycle.d.ts +7 -0
  1227. package/src/tasks-runner/life-cycles/task-results-life-cycle.d.ts.map +1 -0
  1228. package/src/tasks-runner/life-cycles/task-results-life-cycle.js +17 -0
  1229. package/src/tasks-runner/life-cycles/task-timings-life-cycle.d.ts +9 -0
  1230. package/src/tasks-runner/life-cycles/task-timings-life-cycle.d.ts.map +1 -0
  1231. package/src/tasks-runner/life-cycles/task-timings-life-cycle.js +39 -0
  1232. package/src/tasks-runner/life-cycles/tui-summary-life-cycle.d.ts +20 -0
  1233. package/src/tasks-runner/life-cycles/tui-summary-life-cycle.d.ts.map +1 -0
  1234. package/src/tasks-runner/life-cycles/tui-summary-life-cycle.js +316 -0
  1235. package/src/tasks-runner/life-cycles/view-logs-utils.d.ts +2 -0
  1236. package/src/tasks-runner/life-cycles/view-logs-utils.d.ts.map +1 -0
  1237. package/src/tasks-runner/life-cycles/view-logs-utils.js +15 -0
  1238. package/src/tasks-runner/process-metrics-service.d.ts +54 -0
  1239. package/src/tasks-runner/process-metrics-service.d.ts.map +1 -0
  1240. package/src/tasks-runner/process-metrics-service.js +161 -0
  1241. package/src/tasks-runner/pseudo-ipc.d.ts +49 -0
  1242. package/src/tasks-runner/pseudo-ipc.d.ts.map +1 -0
  1243. package/src/tasks-runner/pseudo-ipc.js +156 -0
  1244. package/src/tasks-runner/pseudo-terminal.d.ts +58 -0
  1245. package/src/tasks-runner/pseudo-terminal.d.ts.map +1 -0
  1246. package/src/tasks-runner/pseudo-terminal.js +191 -0
  1247. package/src/tasks-runner/remove-old-cache-records.d.ts +2 -0
  1248. package/src/tasks-runner/remove-old-cache-records.d.ts.map +1 -0
  1249. package/src/tasks-runner/remove-old-cache-records.js +60 -0
  1250. package/src/tasks-runner/run-command.d.ts +43 -0
  1251. package/src/tasks-runner/run-command.d.ts.map +1 -0
  1252. package/src/tasks-runner/run-command.js +854 -0
  1253. package/src/tasks-runner/running-tasks/batch-process.d.ts +20 -0
  1254. package/src/tasks-runner/running-tasks/batch-process.d.ts.map +1 -0
  1255. package/src/tasks-runner/running-tasks/batch-process.js +108 -0
  1256. package/src/tasks-runner/running-tasks/node-child-process.d.ts +41 -0
  1257. package/src/tasks-runner/running-tasks/node-child-process.d.ts.map +1 -0
  1258. package/src/tasks-runner/running-tasks/node-child-process.js +206 -0
  1259. package/src/tasks-runner/running-tasks/noop-child-process.d.ts +17 -0
  1260. package/src/tasks-runner/running-tasks/noop-child-process.d.ts.map +1 -0
  1261. package/src/tasks-runner/running-tasks/noop-child-process.js +22 -0
  1262. package/src/tasks-runner/running-tasks/running-task.d.ts +12 -0
  1263. package/src/tasks-runner/running-tasks/running-task.d.ts.map +1 -0
  1264. package/src/tasks-runner/running-tasks/running-task.js +6 -0
  1265. package/src/tasks-runner/running-tasks/shared-running-task.d.ts +15 -0
  1266. package/src/tasks-runner/running-tasks/shared-running-task.d.ts.map +1 -0
  1267. package/src/tasks-runner/running-tasks/shared-running-task.js +30 -0
  1268. package/src/tasks-runner/task-env-paths.d.ts +2 -0
  1269. package/src/tasks-runner/task-env-paths.d.ts.map +1 -0
  1270. package/src/tasks-runner/task-env-paths.js +45 -0
  1271. package/src/tasks-runner/task-env.d.ts +20 -0
  1272. package/src/tasks-runner/task-env.d.ts.map +1 -0
  1273. package/src/tasks-runner/task-env.js +149 -0
  1274. package/src/tasks-runner/task-graph-utils.d.ts +26 -0
  1275. package/src/tasks-runner/task-graph-utils.d.ts.map +1 -0
  1276. package/src/tasks-runner/task-graph-utils.js +197 -0
  1277. package/src/tasks-runner/task-io-service.d.ts +97 -0
  1278. package/src/tasks-runner/task-io-service.d.ts.map +1 -0
  1279. package/src/tasks-runner/task-io-service.js +146 -0
  1280. package/src/tasks-runner/task-orchestrator.d.ts +77 -0
  1281. package/src/tasks-runner/task-orchestrator.d.ts.map +1 -0
  1282. package/src/tasks-runner/task-orchestrator.js +778 -0
  1283. package/src/tasks-runner/tasks-runner.d.ts +25 -0
  1284. package/src/tasks-runner/tasks-runner.d.ts.map +1 -0
  1285. package/src/tasks-runner/tasks-runner.js +2 -0
  1286. package/src/tasks-runner/tasks-schedule.d.ts +46 -0
  1287. package/src/tasks-runner/tasks-schedule.d.ts.map +1 -0
  1288. package/src/tasks-runner/tasks-schedule.js +222 -0
  1289. package/src/tasks-runner/utils.d.ts +51 -0
  1290. package/src/tasks-runner/utils.d.ts.map +1 -0
  1291. package/src/tasks-runner/utils.js +417 -0
  1292. package/src/utils/ab-testing.d.ts +52 -0
  1293. package/src/utils/ab-testing.d.ts.map +1 -0
  1294. package/src/utils/ab-testing.js +112 -0
  1295. package/src/utils/all-file-data.d.ts +3 -0
  1296. package/src/utils/all-file-data.d.ts.map +1 -0
  1297. package/src/utils/all-file-data.js +8 -0
  1298. package/src/utils/assert-workspace-validity.d.ts +4 -0
  1299. package/src/utils/assert-workspace-validity.d.ts.map +1 -0
  1300. package/src/utils/assert-workspace-validity.js +85 -0
  1301. package/src/utils/async-iterator.d.ts +3 -0
  1302. package/src/utils/async-iterator.d.ts.map +1 -0
  1303. package/src/utils/async-iterator.js +18 -0
  1304. package/src/utils/binary-extensions.d.ts +2 -0
  1305. package/src/utils/binary-extensions.d.ts.map +1 -0
  1306. package/src/utils/binary-extensions.js +279 -0
  1307. package/src/utils/cache-directory.d.ts +8 -0
  1308. package/src/utils/cache-directory.d.ts.map +1 -0
  1309. package/src/utils/cache-directory.js +71 -0
  1310. package/src/utils/call-sites.d.ts +15 -0
  1311. package/src/utils/call-sites.d.ts.map +1 -0
  1312. package/src/utils/call-sites.js +28 -0
  1313. package/src/utils/catalog/index.d.ts +10 -0
  1314. package/src/utils/catalog/index.d.ts.map +1 -0
  1315. package/src/utils/catalog/index.js +38 -0
  1316. package/src/utils/catalog/manager-factory.d.ts +6 -0
  1317. package/src/utils/catalog/manager-factory.d.ts.map +1 -0
  1318. package/src/utils/catalog/manager-factory.js +17 -0
  1319. package/src/utils/catalog/manager.d.ts +41 -0
  1320. package/src/utils/catalog/manager.d.ts.map +1 -0
  1321. package/src/utils/catalog/manager.js +2 -0
  1322. package/src/utils/catalog/pnpm-manager.d.ts +23 -0
  1323. package/src/utils/catalog/pnpm-manager.d.ts.map +1 -0
  1324. package/src/utils/catalog/pnpm-manager.js +260 -0
  1325. package/src/utils/catalog/types.d.ts +5 -0
  1326. package/src/utils/catalog/types.d.ts.map +1 -0
  1327. package/src/utils/catalog/types.js +2 -0
  1328. package/src/utils/child-process.d.ts +23 -0
  1329. package/src/utils/child-process.d.ts.map +1 -0
  1330. package/src/utils/child-process.js +112 -0
  1331. package/src/utils/chunkify.d.ts +12 -0
  1332. package/src/utils/chunkify.d.ts.map +1 -0
  1333. package/src/utils/chunkify.js +44 -0
  1334. package/src/utils/code-frames.d.ts +15 -0
  1335. package/src/utils/code-frames.d.ts.map +1 -0
  1336. package/src/utils/code-frames.js +115 -0
  1337. package/src/utils/collapse-expanded-outputs.d.ts +11 -0
  1338. package/src/utils/collapse-expanded-outputs.d.ts.map +1 -0
  1339. package/src/utils/collapse-expanded-outputs.js +72 -0
  1340. package/src/utils/command-line-utils.d.ts +58 -0
  1341. package/src/utils/command-line-utils.d.ts.map +1 -0
  1342. package/src/utils/command-line-utils.js +248 -0
  1343. package/src/utils/consume-messages-from-socket.d.ts +4 -0
  1344. package/src/utils/consume-messages-from-socket.d.ts.map +1 -0
  1345. package/src/utils/consume-messages-from-socket.js +44 -0
  1346. package/src/utils/db-connection.d.ts +7 -0
  1347. package/src/utils/db-connection.d.ts.map +1 -0
  1348. package/src/utils/db-connection.js +29 -0
  1349. package/src/utils/default-base.d.ts +2 -0
  1350. package/src/utils/default-base.d.ts.map +1 -0
  1351. package/src/utils/default-base.js +17 -0
  1352. package/src/utils/delayed-spinner.d.ts +43 -0
  1353. package/src/utils/delayed-spinner.d.ts.map +1 -0
  1354. package/src/utils/delayed-spinner.js +78 -0
  1355. package/src/utils/dotenv.d.ts +8 -0
  1356. package/src/utils/dotenv.d.ts.map +1 -0
  1357. package/src/utils/dotenv.js +21 -0
  1358. package/src/utils/exit-codes.d.ts +10 -0
  1359. package/src/utils/exit-codes.d.ts.map +1 -0
  1360. package/src/utils/exit-codes.js +35 -0
  1361. package/src/utils/fileutils.d.ts +76 -0
  1362. package/src/utils/fileutils.d.ts.map +1 -0
  1363. package/src/utils/fileutils.js +151 -0
  1364. package/src/utils/find-matching-projects.d.ts +11 -0
  1365. package/src/utils/find-matching-projects.d.ts.map +1 -0
  1366. package/src/utils/find-matching-projects.js +222 -0
  1367. package/src/utils/find-workspace-root.d.ts +12 -0
  1368. package/src/utils/find-workspace-root.d.ts.map +1 -0
  1369. package/src/utils/find-workspace-root.js +33 -0
  1370. package/src/utils/get-package-name-from-import-path.d.ts +2 -0
  1371. package/src/utils/get-package-name-from-import-path.d.ts.map +1 -0
  1372. package/src/utils/get-package-name-from-import-path.js +17 -0
  1373. package/src/utils/git-utils.d.ts +43 -0
  1374. package/src/utils/git-utils.d.ts.map +1 -0
  1375. package/src/utils/git-utils.index-filter.d.ts +1 -0
  1376. package/src/utils/git-utils.index-filter.d.ts.map +1 -0
  1377. package/src/utils/git-utils.index-filter.js +21 -0
  1378. package/src/utils/git-utils.js +297 -0
  1379. package/src/utils/git-utils.tree-filter.d.ts +12 -0
  1380. package/src/utils/git-utils.tree-filter.d.ts.map +1 -0
  1381. package/src/utils/git-utils.tree-filter.js +45 -0
  1382. package/src/utils/globs.d.ts +4 -0
  1383. package/src/utils/globs.d.ts.map +1 -0
  1384. package/src/utils/globs.js +18 -0
  1385. package/src/utils/handle-errors.d.ts +2 -0
  1386. package/src/utils/handle-errors.d.ts.map +1 -0
  1387. package/src/utils/handle-errors.js +82 -0
  1388. package/src/utils/ignore.d.ts +10 -0
  1389. package/src/utils/ignore.d.ts.map +1 -0
  1390. package/src/utils/ignore.js +42 -0
  1391. package/src/utils/installation-directory.d.ts +3 -0
  1392. package/src/utils/installation-directory.d.ts.map +1 -0
  1393. package/src/utils/installation-directory.js +12 -0
  1394. package/src/utils/is-ci.d.ts +2 -0
  1395. package/src/utils/is-ci.d.ts.map +1 -0
  1396. package/src/utils/is-ci.js +26 -0
  1397. package/src/utils/is-sandbox.d.ts +2 -0
  1398. package/src/utils/is-sandbox.d.ts.map +1 -0
  1399. package/src/utils/is-sandbox.js +9 -0
  1400. package/src/utils/is-using-prettier.d.ts +4 -0
  1401. package/src/utils/is-using-prettier.d.ts.map +1 -0
  1402. package/src/utils/is-using-prettier.js +62 -0
  1403. package/src/utils/json-diff.d.ts +19 -0
  1404. package/src/utils/json-diff.d.ts.map +1 -0
  1405. package/src/utils/json-diff.js +112 -0
  1406. package/src/utils/json.d.ts +45 -0
  1407. package/src/utils/json.d.ts.map +1 -0
  1408. package/src/utils/json.js +62 -0
  1409. package/src/utils/legacy-task-history.d.ts +9 -0
  1410. package/src/utils/legacy-task-history.d.ts.map +1 -0
  1411. package/src/utils/legacy-task-history.js +87 -0
  1412. package/src/utils/logger.d.ts +13 -0
  1413. package/src/utils/logger.d.ts.map +1 -0
  1414. package/src/utils/logger.js +52 -0
  1415. package/src/utils/nx-cloud-utils.d.ts +4 -0
  1416. package/src/utils/nx-cloud-utils.d.ts.map +1 -0
  1417. package/src/utils/nx-cloud-utils.js +24 -0
  1418. package/src/utils/nx-console-prompt.d.ts +2 -0
  1419. package/src/utils/nx-console-prompt.d.ts.map +1 -0
  1420. package/src/utils/nx-console-prompt.js +64 -0
  1421. package/src/utils/nx-key.d.ts +8 -0
  1422. package/src/utils/nx-key.d.ts.map +1 -0
  1423. package/src/utils/nx-key.js +52 -0
  1424. package/src/utils/object-sort.d.ts +2 -0
  1425. package/src/utils/object-sort.d.ts.map +1 -0
  1426. package/src/utils/object-sort.js +9 -0
  1427. package/src/utils/output.d.ts +78 -0
  1428. package/src/utils/output.d.ts.map +1 -0
  1429. package/src/utils/output.js +258 -0
  1430. package/src/utils/package-json.d.ts +195 -0
  1431. package/src/utils/package-json.d.ts.map +1 -0
  1432. package/src/utils/package-json.js +357 -0
  1433. package/src/utils/package-manager.d.ts +123 -0
  1434. package/src/utils/package-manager.d.ts.map +1 -0
  1435. package/src/utils/package-manager.js +580 -0
  1436. package/src/utils/params.d.ts +138 -0
  1437. package/src/utils/params.d.ts.map +1 -0
  1438. package/src/utils/params.js +682 -0
  1439. package/src/utils/path.d.ts +20 -0
  1440. package/src/utils/path.d.ts.map +1 -0
  1441. package/src/utils/path.js +37 -0
  1442. package/src/utils/perf-logging.d.ts +2 -0
  1443. package/src/utils/perf-logging.d.ts.map +1 -0
  1444. package/src/utils/perf-logging.js +13 -0
  1445. package/src/utils/plugins/atomizer-utils.d.ts +12 -0
  1446. package/src/utils/plugins/atomizer-utils.d.ts.map +1 -0
  1447. package/src/utils/plugins/atomizer-utils.js +23 -0
  1448. package/src/utils/plugins/core-plugins.d.ts +7 -0
  1449. package/src/utils/plugins/core-plugins.d.ts.map +1 -0
  1450. package/src/utils/plugins/core-plugins.js +113 -0
  1451. package/src/utils/plugins/index.d.ts +6 -0
  1452. package/src/utils/plugins/index.d.ts.map +1 -0
  1453. package/src/utils/plugins/index.js +15 -0
  1454. package/src/utils/plugins/installed-plugins.d.ts +6 -0
  1455. package/src/utils/plugins/installed-plugins.d.ts.map +1 -0
  1456. package/src/utils/plugins/installed-plugins.js +76 -0
  1457. package/src/utils/plugins/local-plugins.d.ts +5 -0
  1458. package/src/utils/plugins/local-plugins.d.ts.map +1 -0
  1459. package/src/utils/plugins/local-plugins.js +30 -0
  1460. package/src/utils/plugins/output.d.ts +35 -0
  1461. package/src/utils/plugins/output.d.ts.map +1 -0
  1462. package/src/utils/plugins/output.js +200 -0
  1463. package/src/utils/plugins/plugin-capabilities.d.ts +16 -0
  1464. package/src/utils/plugins/plugin-capabilities.d.ts.map +1 -0
  1465. package/src/utils/plugins/plugin-capabilities.js +78 -0
  1466. package/src/utils/pnpm-workspace.d.ts +9 -0
  1467. package/src/utils/pnpm-workspace.d.ts.map +1 -0
  1468. package/src/utils/pnpm-workspace.js +2 -0
  1469. package/src/utils/print-help.d.ts +12 -0
  1470. package/src/utils/print-help.d.ts.map +1 -0
  1471. package/src/utils/print-help.js +258 -0
  1472. package/src/utils/project-graph-utils.d.ts +19 -0
  1473. package/src/utils/project-graph-utils.d.ts.map +1 -0
  1474. package/src/utils/project-graph-utils.js +78 -0
  1475. package/src/utils/promised-based-queue.d.ts +7 -0
  1476. package/src/utils/promised-based-queue.d.ts.map +1 -0
  1477. package/src/utils/promised-based-queue.js +43 -0
  1478. package/src/utils/provenance.d.ts +48 -0
  1479. package/src/utils/provenance.d.ts.map +1 -0
  1480. package/src/utils/provenance.js +105 -0
  1481. package/src/utils/require-nx-key.d.ts +2 -0
  1482. package/src/utils/require-nx-key.d.ts.map +1 -0
  1483. package/src/utils/require-nx-key.js +22 -0
  1484. package/src/utils/serializable-error.d.ts +5 -0
  1485. package/src/utils/serializable-error.d.ts.map +1 -0
  1486. package/src/utils/serializable-error.js +33 -0
  1487. package/src/utils/serialize-overrides-into-command-line.d.ts +4 -0
  1488. package/src/utils/serialize-overrides-into-command-line.d.ts.map +1 -0
  1489. package/src/utils/serialize-overrides-into-command-line.js +42 -0
  1490. package/src/utils/serialize-target.d.ts +2 -0
  1491. package/src/utils/serialize-target.d.ts.map +1 -0
  1492. package/src/utils/serialize-target.js +6 -0
  1493. package/src/utils/spinner.d.ts +13 -0
  1494. package/src/utils/spinner.d.ts.map +1 -0
  1495. package/src/utils/spinner.js +61 -0
  1496. package/src/utils/split-target.d.ts +4 -0
  1497. package/src/utils/split-target.d.ts.map +1 -0
  1498. package/src/utils/split-target.js +88 -0
  1499. package/src/utils/strip-indents.d.ts +15 -0
  1500. package/src/utils/strip-indents.d.ts.map +1 -0
  1501. package/src/utils/strip-indents.js +23 -0
  1502. package/src/utils/sync-generators.d.ts +67 -0
  1503. package/src/utils/sync-generators.d.ts.map +1 -0
  1504. package/src/utils/sync-generators.js +354 -0
  1505. package/src/utils/task-history.d.ts +18 -0
  1506. package/src/utils/task-history.d.ts.map +1 -0
  1507. package/src/utils/task-history.js +51 -0
  1508. package/src/utils/update-nxw.d.ts +3 -0
  1509. package/src/utils/update-nxw.d.ts.map +1 -0
  1510. package/src/utils/update-nxw.js +22 -0
  1511. package/src/utils/versions.d.ts +2 -0
  1512. package/src/utils/versions.d.ts.map +1 -0
  1513. package/src/utils/versions.js +4 -0
  1514. package/src/utils/workspace-context.d.ts +22 -0
  1515. package/src/utils/workspace-context.d.ts.map +1 -0
  1516. package/src/utils/workspace-context.js +119 -0
  1517. package/src/utils/workspace-root.d.ts +7 -0
  1518. package/src/utils/workspace-root.d.ts.map +1 -0
  1519. package/src/utils/workspace-root.js +39 -0
  1520. package/tasks-runners/default.d.ts +2 -0
  1521. package/tasks-runners/default.d.ts.map +1 -0
  1522. package/tasks-runners/default.js +5 -0
@@ -0,0 +1,846 @@
1
+ import type ChangelogRenderer from '../../release/changelog-renderer';
2
+ import type { ChangelogRenderOptions } from '../../release/changelog-renderer';
3
+ import type { validReleaseVersionPrefixes } from '../command-line/release/utils/release-graph';
4
+ import type { PackageManager } from '../utils/package-manager';
5
+ import type { InputDefinition, TargetConfiguration, TargetDependencyConfig } from './workspace-json-project-json';
6
+ export type ImplicitDependencyEntry<T = '*' | string[]> = {
7
+ [key: string]: T | ImplicitJsonSubsetDependency<T>;
8
+ };
9
+ export interface ImplicitJsonSubsetDependency<T = '*' | string[]> {
10
+ [key: string]: T | ImplicitJsonSubsetDependency<T>;
11
+ }
12
+ /**
13
+ * @deprecated Use {@link NxJsonConfiguration#defaultBase } instead
14
+ */
15
+ export interface NxAffectedConfig {
16
+ /**
17
+ * Default based branch used by affected commands.
18
+ */
19
+ defaultBase?: string;
20
+ }
21
+ export type TargetDefaults = Record<string, Partial<TargetConfiguration>>;
22
+ export type TargetDependencies = Record<string, (TargetDependencyConfig | string)[]>;
23
+ export interface NrwlJsPluginConfig {
24
+ analyzeSourceFiles?: boolean;
25
+ analyzePackageJson?: boolean;
26
+ analyzeLockfile?: boolean;
27
+ projectsAffectedByDependencyUpdates?: 'all' | 'auto' | string[];
28
+ }
29
+ interface NxInstallationConfiguration {
30
+ /**
31
+ * Version used for Nx
32
+ */
33
+ version: string;
34
+ /**
35
+ * Record<pluginPackageName, pluginVersion>. e.g.
36
+ * plugins: { '@nx/angular': '1.0.0' }
37
+ */
38
+ plugins?: Record<string, string>;
39
+ }
40
+ export type ManifestRootToUpdate = string | {
41
+ path: string;
42
+ preserveLocalDependencyProtocols: boolean;
43
+ };
44
+ export interface NxReleaseDockerConfiguration {
45
+ /**
46
+ * A command to run after validation of nx release configuration, but before docker versioning begins.
47
+ * Useful for preparing docker build artifacts. If --dry-run is passed, the command is still executed,
48
+ * but with the NX_DRY_RUN environment variable set to 'true'.
49
+ */
50
+ preVersionCommand?: string;
51
+ /**
52
+ * Projects which should use a no-op VersionActions implementation rather than any potentially inferred by default or via Inference Plugins.
53
+ * Can be an array of project names (subset of projects in the release setup/release group) or a boolean (true means all projects).
54
+ * e.g.
55
+ * Consider a node application called `api` that does not require its `package.json` file to be versioned yet builds versioned docker images.
56
+ * To ensure that JS Versioning does not take place, the following would be set in the `docker` config in `nx.release`
57
+ * ```
58
+ * "docker": {
59
+ * "skipVersionActions": ["api"]
60
+ * }
61
+ * ```
62
+ * Note: if you are using {versionActionsVersion} in your docker version scheme you should not skip version actions for that project
63
+ * as the docker versioning will not be able to resolve the {versionActionsVersion} placeholder.
64
+ */
65
+ skipVersionActions?: string[] | boolean;
66
+ /**
67
+ * Record of named version patterns to choose between when versioning docker projects.
68
+ *
69
+ * e.g.
70
+ * ```
71
+ * "production": "{currentDate|YYMM.DD}.{shortCommitSha}",
72
+ * "hotfix": "{currentDate|YYMM.DD}-hotfix"
73
+ * ```
74
+ */
75
+ versionSchemes?: Record<string, string>;
76
+ /**
77
+ * Repository name for the image on the configured registry
78
+ */
79
+ repositoryName?: string;
80
+ /**
81
+ * Url of the Docker Image/Container Registry to push images to.
82
+ * Defaults to Docker Hub.
83
+ */
84
+ registryUrl?: string;
85
+ }
86
+ export interface NxReleaseVersionConfiguration {
87
+ /**
88
+ * Shorthand for enabling the current version of projects to be resolved from git tags,
89
+ * and the next version to be determined by analyzing commit messages according to the
90
+ * Conventional Commits specification.
91
+ */
92
+ conventionalCommits?: boolean;
93
+ /**
94
+ * A command to run after validation of nx release configuration, but before versioning begins.
95
+ * Useful for preparing build artifacts. If --dry-run is passed, the command is still executed,
96
+ * but with the NX_DRY_RUN environment variable set to 'true'.
97
+ */
98
+ preVersionCommand?: string;
99
+ /**
100
+ * The source to use for determining the specifier to use when versioning.
101
+ * 'prompt' is the default and will interactively prompt the user for an explicit/imperative specifier.
102
+ * 'conventional-commits' will attempt determine a specifier from commit messages conforming to the Conventional Commits specification.
103
+ * 'version-plans' will determine the specifier from the version plan files available on disk.
104
+ */
105
+ specifierSource?: 'prompt' | 'conventional-commits' | 'version-plans';
106
+ /**
107
+ * A list of directories containing manifest files (such as package.json) to apply updates to when versioning.
108
+ *
109
+ * By default, only the project root will be used, but you could customize this to only version a manifest in a
110
+ * dist directory, or even version multiple manifests in different directories, such as both source and dist.
111
+ *
112
+ * For more advanced scenarios, the preserveLocalDependencyProtocols can be overridden per manifest by providing
113
+ * and object instead of a string.
114
+ */
115
+ manifestRootsToUpdate?: ManifestRootToUpdate[];
116
+ /**
117
+ * The resolver to use for determining the current version of a project during versioning.
118
+ * This is needed for versioning approaches which involve relatively modifying a current version
119
+ * to arrive at a new version, such as semver bumps like 'patch', 'minor' etc.
120
+ *
121
+ * Using 'none' explicitly declares that the current version is not needed to compute the new version, and
122
+ * should only be used with appropriate version actions implementations that support it.
123
+ */
124
+ currentVersionResolver?: 'registry' | 'disk' | 'git-tag' | 'none';
125
+ /**
126
+ * Metadata to provide to the configured currentVersionResolver to help it in determining the current version.
127
+ * What to pass here is specific to each resolver.
128
+ */
129
+ currentVersionResolverMetadata?: Record<string, unknown>;
130
+ /**
131
+ * The fallback version resolver to use when the configured currentVersionResolver fails to resolve the current version.
132
+ */
133
+ fallbackCurrentVersionResolver?: 'disk';
134
+ /**
135
+ * Whether or not this is the first release of one of more projects.
136
+ * This removes certain validation checks that are not possible to enforce if the project has never been released before.
137
+ */
138
+ firstRelease?: boolean;
139
+ /**
140
+ * The prefix to use when versioning dependencies.
141
+ * This can be one of the following: auto, '', '~', '^', '=', where auto means the existing prefix will be preserved.
142
+ */
143
+ versionPrefix?: (typeof validReleaseVersionPrefixes)[number];
144
+ /**
145
+ * Whether to delete the processed version plans file after versioning is complete. This is false by default because the
146
+ * version plans are also needed for changelog generation.
147
+ */
148
+ deleteVersionPlans?: boolean;
149
+ /**
150
+ * When versioning independent projects, this controls whether to update their dependents (i.e. the things that depend on them).
151
+ * - 'never' means no dependents will be updated (unless they happen to be versioned directly as well).
152
+ * - 'always' is the default and will cause dependents to be updated (a patch version bump) when a dependency is versioned, even if they are not included in the group or projects filter.
153
+ * - 'auto' will cause dependents to be updated (a patch version bump) when a dependency is versioned, as long as a
154
+ * group or projects filter is not applied that does not include them.
155
+ */
156
+ updateDependents?: 'auto' | 'always' | 'never';
157
+ /**
158
+ * Whether to log projects that have not changed during versioning.
159
+ */
160
+ logUnchangedProjects?: boolean;
161
+ /**
162
+ * The path to the version actions implementation to use for releasing all projects by default.
163
+ * This can also be overridden on the release group and project levels.
164
+ */
165
+ versionActions?: string;
166
+ /**
167
+ * The specific options that are defined by each version actions implementation.
168
+ * They will be passed to the version actions implementation when running a release.
169
+ */
170
+ versionActionsOptions?: Record<string, unknown>;
171
+ /**
172
+ * Whether to preserve local dependency protocols (e.g. file references, or the `workspace:` protocol in package.json files)
173
+ * of local dependencies when updating them during versioning.
174
+ */
175
+ preserveLocalDependencyProtocols?: boolean;
176
+ /**
177
+ * Whether to preserve matching dependency ranges when updating them during versioning.
178
+ * e.g.
179
+ * The new version will be "1.2.0" and the current version range in dependents is already "^1.0.0"
180
+ * Therefore, the manifest file is not updated.
181
+ *
182
+ * This is false by default.
183
+ */
184
+ preserveMatchingDependencyRanges?: boolean | Array<'dependencies' | 'devDependencies' | 'peerDependencies' | 'optionalDependencies'>;
185
+ /**
186
+ * Whether to strictly follow SemVer V2 spec for 0.x versions where breaking changes
187
+ * bump the minor version (instead of major), and new features bump the patch version
188
+ * (instead of minor).
189
+ *
190
+ * When enabled:
191
+ * - 'major' bumps become 'minor' bumps for 0.x versions
192
+ * - 'minor' bumps become 'patch' bumps for 0.x versions
193
+ * - 'premajor' becomes 'preminor' for 0.x versions
194
+ * - 'preminor' becomes 'prepatch' for 0.x versions
195
+ *
196
+ * Versions 1.0.0 and above are unaffected.
197
+ *
198
+ * This is false by default for backward compatibility.
199
+ */
200
+ adjustSemverBumpsForZeroMajorVersion?: boolean;
201
+ }
202
+ export interface NxReleaseChangelogConfiguration {
203
+ /**
204
+ * Optionally create a release containing all relevant changes on a supported version control system, it
205
+ * is false by default.
206
+ *
207
+ * NOTE: if createRelease is set on a group of projects, it will cause the default releaseTagPattern of
208
+ * "{projectName}@{version}" to be used for those projects, even when versioning everything together.
209
+ */
210
+ createRelease?: false | 'github' | 'gitlab' | {
211
+ provider: 'github-enterprise-server';
212
+ hostname: string;
213
+ /**
214
+ * If not set, this will default to `https://${hostname}/api/v3`
215
+ */
216
+ apiBaseUrl?: string;
217
+ } | {
218
+ provider: 'gitlab';
219
+ hostname: string;
220
+ /**
221
+ * If not set, this will default to `https://${hostname}/api/v4`
222
+ */
223
+ apiBaseUrl?: string;
224
+ };
225
+ /**
226
+ * This can either be set to a string value that will be written to the changelog file(s)
227
+ * at the workspace root and/or within project directories, or set to `false` to specify
228
+ * that no changelog entry should be made when there are no code changes.
229
+ *
230
+ * NOTE: The string value has a sensible default value and supports interpolation of
231
+ * {projectName} when generating for project level changelogs.
232
+ *
233
+ * E.g. for a project level changelog you could customize the message to something like:
234
+ * "entryWhenNoChanges": "There were no code changes for {projectName}"
235
+ */
236
+ entryWhenNoChanges?: string | false;
237
+ /**
238
+ * This is either a workspace path where the changelog markdown file will be created and read from,
239
+ * or set to false to disable file creation altogether (e.g. if only using Github releases).
240
+ *
241
+ * Interpolation of {projectName}, {projectRoot} and {workspaceRoot} is supported.
242
+ *
243
+ * The defaults are:
244
+ * - "{workspaceRoot}/CHANGELOG.md" at the workspace level
245
+ * - "{projectRoot}/CHANGELOG.md" at the project level
246
+ */
247
+ file?: string | false;
248
+ /**
249
+ * If using nx.json, this can be a path to a valid changelog renderer function used to transform commit messages and
250
+ * other metadata into the final changelog (usually in markdown format). Its output can be modified using the optional
251
+ * `renderOptions`.
252
+ *
253
+ * If configuring using a custom `ReleaseClient` via the programmatic API, you can either provide a path or directly
254
+ * provide the implementation class itself.
255
+ *
256
+ * By default, the renderer is set to the DefaultChangelogRenderer implementation from "nx/release/changelog-renderer",
257
+ * which nx provides out of the box.
258
+ */
259
+ renderer?: string | typeof ChangelogRenderer;
260
+ renderOptions?: ChangelogRenderOptions;
261
+ }
262
+ export interface NxReleaseGitConfiguration {
263
+ /**
264
+ * Whether or not to automatically commit the changes made by current command
265
+ */
266
+ commit?: boolean;
267
+ /**
268
+ * Custom git commit message to use when committing the changes made by this command {version} will be dynamically interpolated when performing fixed releases, interpolated tags will be appended to the commit body when performing independent releases.
269
+ */
270
+ commitMessage?: string;
271
+ /**
272
+ * Additional arguments (added after the --message argument, which may or may not be customized with --git-commit-message) to pass to the `git commit` command invoked behind the scenes. May be a string or array of strings.
273
+ */
274
+ commitArgs?: string | string[];
275
+ /**
276
+ * Whether or not to stage the changes made by this command. Always treated as true if commit is true.
277
+ */
278
+ stageChanges?: boolean;
279
+ /**
280
+ * Whether or not to automatically tag the changes made by this command
281
+ */
282
+ tag?: boolean;
283
+ /**
284
+ * Custom git tag message to use when tagging the changes made by this command. This defaults to be the same value as the tag itself.
285
+ */
286
+ tagMessage?: string;
287
+ /**
288
+ * Additional arguments to pass to the `git tag` command invoked behind the scenes. May be a string or array of strings.
289
+ */
290
+ tagArgs?: string | string[];
291
+ /**
292
+ * Whether or not to automatically push the changes made by this command to the remote git repository.
293
+ */
294
+ push?: boolean;
295
+ /**
296
+ * Additional arguments to pass to the `git push` command invoked behind the scenes. May be a string or array of strings.
297
+ */
298
+ pushArgs?: string | string[];
299
+ }
300
+ export interface NxReleaseConventionalCommitsConfiguration {
301
+ /**
302
+ * Whether or not to rely on commit scope to resolve version specifier.
303
+ * If set to 'true', then only commits with scope matching projectName and commits without scope affects version determined, rest are assumed as patch change.
304
+ * If set to 'false', then all commits that affected project used to determine semver change.
305
+ * If not set, this will default to 'true'
306
+ */
307
+ useCommitScope?: boolean;
308
+ types?: Record<string,
309
+ /**
310
+ * A map of commit types to their configuration.
311
+ * If a type is set to 'true', then it will be enabled with the default 'semverBump' of 'patch' and will appear in the changelog.
312
+ * If a type is set to 'false', then it will not trigger a version bump and will be hidden from the changelog.
313
+ */
314
+ {
315
+ /**
316
+ * The semver bump to apply when a commit of this type is found.
317
+ * If set to "none", the commit will be ignored for versioning purposes.
318
+ */
319
+ semverBump?: 'patch' | 'minor' | 'major' | 'none';
320
+ /**
321
+ * Configuration for the changelog section for commits of this type.
322
+ * If set to 'true', then commits of this type will be included in the changelog with their default title for the type.
323
+ * If set to 'false', then commits of this type will not be included in the changelog.
324
+ */
325
+ changelog?: {
326
+ title?: string;
327
+ hidden?: boolean;
328
+ } | boolean;
329
+ } | boolean>;
330
+ }
331
+ export interface NxReleaseVersionPlansConfiguration {
332
+ /**
333
+ * Changes to files matching any of these optional patterns will be excluded from the affected project logic within the `nx release plan:check`
334
+ * command. This is useful for ignoring files that are not relevant to the versioning process, such as documentation or configuration files.
335
+ *
336
+ * These patterns follow gitignore semantics. When using negation patterns (to "un-ignore" certain files), use specific file extension patterns
337
+ * rather than wildcards like `*` or `**`. For example:
338
+ * - Works: ["**\/*.ts", "!**\/src\/**"] - ignores all .ts files except those in src/ directories
339
+ * - Does NOT work as expected: ["*", "!src/"] - negation won't properly un-ignore nested paths
340
+ */
341
+ ignorePatternsForPlanCheck?: string[];
342
+ }
343
+ export interface NxReleaseConfiguration {
344
+ /**
345
+ * Shorthand for amending the projects which will be included in the implicit default release group (all projects by default).
346
+ * @note Only one of `projects` or `groups` can be specified, the cannot be used together.
347
+ */
348
+ projects?: string[] | string;
349
+ /**
350
+ * Configure options to handle versioning docker projects. Docker projects will be identified via the presence of a Dockerfile.
351
+ * Set to `true` to enable with default settings, or provide a configuration object for custom settings.
352
+ */
353
+ docker?: NxReleaseDockerConfiguration | true;
354
+ /**
355
+ * @note When no projects or groups are configured at all (the default), all projects in the workspace are treated as
356
+ * if they were in a release group together with a fixed relationship.
357
+ */
358
+ groups?: Record<string, // group name
359
+ {
360
+ /**
361
+ * Whether to version and release projects within the group independently, or together in lock step ("fixed").
362
+ * If not set on the group, this will be informed by the projectsRelationship config at the top level.
363
+ */
364
+ projectsRelationship?: 'fixed' | 'independent';
365
+ /**
366
+ * Required list of one or more projects to include in the release group. Any single project can
367
+ * only be used in a maximum of one release group.
368
+ */
369
+ projects: string[] | string;
370
+ /**
371
+ * Configure options to handle versioning docker projects for this group.
372
+ * Set to `true` to enable with default settings, or provide a configuration object for custom settings.
373
+ */
374
+ docker?: (NxReleaseDockerConfiguration & {
375
+ /**
376
+ * A command to run after validation of nx release configuration, but before docker versioning begins.
377
+ * Used for preparing docker build artifacts. If --dry-run is passed, the command is still executed, but
378
+ * with the NX_DRY_RUN environment variable set to 'true'.
379
+ * It will run in addition to the global `preVersionCommand`
380
+ */
381
+ groupPreVersionCommand?: string;
382
+ }) | true;
383
+ /**
384
+ * Optionally override version configuration for this group.
385
+ *
386
+ * NOTE: git configuration is not supported at the group level, only the root/command level
387
+ */
388
+ version?: NxReleaseVersionConfiguration & {
389
+ /**
390
+ * A command to run after validation of nx release configuration, but before versioning begins.
391
+ * Used for preparing build artifacts. If --dry-run is passed, the command is still executed, but
392
+ * with the NX_DRY_RUN environment variable set to 'true'.
393
+ * It will run in addition to the global `preVersionCommand`
394
+ */
395
+ groupPreVersionCommand?: string;
396
+ };
397
+ /**
398
+ * Project changelogs are disabled by default.
399
+ *
400
+ * Here you can optionally override project changelog configuration for this group.
401
+ * Notes about boolean values:
402
+ *
403
+ * - true = enable project level changelogs using default configuration
404
+ * - false = explicitly disable project level changelogs
405
+ *
406
+ * NOTE: git configuration is not supported at the group level, only the root/command level
407
+ */
408
+ changelog?: NxReleaseChangelogConfiguration | boolean;
409
+ /**
410
+ * Configuration for release tag generation and matching.
411
+ */
412
+ releaseTag?: {
413
+ /**
414
+ * The pattern to use for release tags. Supports interpolating {version}, {projectName}, and {releaseGroupName}.
415
+ */
416
+ pattern?: string;
417
+ /**
418
+ * By default, we will try and resolve the latest match for the releaseTagPattern from the current branch,
419
+ * falling back to all branches if no match is found on the current branch.
420
+ *
421
+ * - Setting this to true will cause us to ALWAYS check all branches for the latest match.
422
+ * - Setting it to false will cause us to ONLY check the current branch for the latest match.
423
+ * - Setting it to an array of strings will cause us to check all branches WHEN the current branch matches one of the strings in the array. Glob patterns are supported.
424
+ */
425
+ checkAllBranchesWhen?: boolean | string[];
426
+ /**
427
+ * By default, we will use semver when searching through the tags to find the latest matching tag.
428
+ *
429
+ * - Setting this to true will cause us to use semver to match the version
430
+ * - Setting this to false will cause us to not use semver to match the version allowing for non-semver versions
431
+ */
432
+ requireSemver?: boolean;
433
+ /**
434
+ * Controls how docker versions are used relative to semver versions when creating git tags and changelog entries.
435
+ *
436
+ * - true: Use only the docker version
437
+ * - false: Use only the semver version
438
+ * - 'both': Create tags and changelog entries for both docker and semver versions
439
+ *
440
+ * By default, this is set to true when docker configuration is present, and false otherwise.
441
+ */
442
+ preferDockerVersion?: boolean | 'both';
443
+ /**
444
+ * When set to true and multiple tags match your configured pattern, the git tag matching logic will strictly prefer the tag which contain a semver preid which matches the one
445
+ * given to the nx release invocation.
446
+ *
447
+ * For example, let's say your pattern is "{projectName}@{version}" and you have the following tags for project "my-lib", which uses semver:
448
+ * - my-lib@1.2.4-beta.1
449
+ * - my-lib@1.2.4-alpha.1
450
+ * - my-lib@1.2.3
451
+ *
452
+ * If "strictPreid" is set to true and you run:
453
+ * - `nx release --preid beta`, the git tag "my-lib@1.2.4-beta.1" will be resolved.
454
+ * - `nx release --preid alpha`, the git tag "my-lib@1.2.4-alpha.1" will be resolved.
455
+ * - `nx release` (no preid), the git tag "my-lib@1.2.3" will be resolved.
456
+ *
457
+ * If "strictPreid" is set to false, the git tag "my-lib@1.2.4-beta.1" will always be resolved as the latest tag that matches the pattern,
458
+ * regardless of any preid which gets passed to nx release.
459
+ *
460
+ * NOTE: This feature was added in a minor version and is therefore set to false by default, but this may change in a future major version.
461
+ */
462
+ strictPreid?: boolean;
463
+ };
464
+ /**
465
+ * @deprecated Use `releaseTag.pattern` instead. Will be removed in Nx 23.
466
+ * Optionally override the git/release tag pattern to use for this group.
467
+ */
468
+ releaseTagPattern?: string;
469
+ /**
470
+ * @deprecated Use `releaseTag.checkAllBranchesWhen` instead. Will be removed in Nx 23.
471
+ */
472
+ releaseTagPatternCheckAllBranchesWhen?: boolean | string[];
473
+ /**
474
+ * @deprecated Use `releaseTag.requireSemver` instead. Will be removed in Nx 23.
475
+ */
476
+ releaseTagPatternRequireSemver?: boolean;
477
+ /**
478
+ * @deprecated Use `releaseTag.preferDockerVersion` instead. Will be removed in Nx 23.
479
+ */
480
+ releaseTagPatternPreferDockerVersion?: boolean | 'both';
481
+ /**
482
+ * @deprecated Use `releaseTag.strictPreid` instead. Will be removed in Nx 23.
483
+ */
484
+ releaseTagPatternStrictPreid?: boolean;
485
+ /**
486
+ * Enables using version plans as a specifier source for versioning and
487
+ * to determine changes for changelog generation.
488
+ */
489
+ versionPlans?: NxReleaseVersionPlansConfiguration | boolean;
490
+ }>;
491
+ /**
492
+ * Configures the default value for all groups that don't explicitly state their own projectsRelationship.
493
+ *
494
+ * By default, this is set to "fixed" which means all projects in the workspace will be versioned and
495
+ * released together in lock step.
496
+ */
497
+ projectsRelationship?: 'fixed' | 'independent';
498
+ changelog?: {
499
+ /**
500
+ * Enable or override configuration for git operations as part of the changelog subcommand
501
+ */
502
+ git?: NxReleaseGitConfiguration;
503
+ /**
504
+ * Workspace changelog is enabled by default. Notes about boolean values:
505
+ *
506
+ * - true = explicitly enable workspace changelog using default configuration
507
+ * - false = disable workspace changelog
508
+ */
509
+ workspaceChangelog?: NxReleaseChangelogConfiguration | boolean;
510
+ /**
511
+ * Project changelogs are disabled by default. Notes about boolean values:
512
+ *
513
+ * - true = enable project level changelogs using default configuration
514
+ * - false = explicitly disable project level changelogs
515
+ */
516
+ projectChangelogs?: NxReleaseChangelogConfiguration | boolean;
517
+ /**
518
+ * Whether or not to automatically look up the first commit for the workspace (or package, if versioning independently)
519
+ * and use that as the starting point for changelog generation. If this is not enabled, changelog generation will fail
520
+ * if there is no previous matching git tag to use as a starting point.
521
+ */
522
+ automaticFromRef?: boolean;
523
+ };
524
+ /**
525
+ * If no version configuration is provided, we will assume that TypeScript/JavaScript experience is what is desired,
526
+ * allowing for terser release configuration for the common case.
527
+ */
528
+ version?: NxReleaseVersionConfiguration & {
529
+ git?: NxReleaseGitConfiguration;
530
+ preVersionCommand?: string;
531
+ };
532
+ /**
533
+ * Configuration for release tag generation and matching.
534
+ */
535
+ releaseTag?: {
536
+ /**
537
+ * The pattern to use for release tags. This field is the source of truth
538
+ * for changelog generation and release tagging, as well as for conventional commits parsing.
539
+ *
540
+ * It supports interpolating the version as {version} and (if releasing independently or forcing
541
+ * project level version control system releases) the project name as {projectName} within the string.
542
+ *
543
+ * The default pattern for fixed/unified releases is: "v{version}"
544
+ * The default pattern for independent releases at the project level is: "{projectName}@{version}"
545
+ */
546
+ pattern?: string;
547
+ /**
548
+ * By default, we will try and resolve the latest match for the pattern from the current branch,
549
+ * falling back to all branches if no match is found on the current branch.
550
+ *
551
+ * - Setting this to true will cause us to ALWAYS check all branches for the latest match.
552
+ * - Setting it to false will cause us to ONLY check the current branch for the latest match.
553
+ * - Setting it to an array of strings will cause us to check all branches WHEN the current branch matches one of the strings in the array. Glob patterns are supported.
554
+ */
555
+ checkAllBranchesWhen?: boolean | string[];
556
+ /**
557
+ * By default, we will use semver when searching through the tags to find the latest matching tag.
558
+ *
559
+ * - Setting this to true will cause us to use semver to match the version
560
+ * - Setting this to false will cause us to not use semver to match the version allowing for non-semver versions
561
+ */
562
+ requireSemver?: boolean;
563
+ /**
564
+ * Controls how docker versions are used relative to semver versions when creating git tags and changelog entries.
565
+ *
566
+ * - true: Use only the docker version
567
+ * - false: Use only the semver version
568
+ * - 'both': Create tags and changelog entries for both docker and semver versions
569
+ *
570
+ * By default, this is set to true when docker configuration is present, and false otherwise.
571
+ */
572
+ preferDockerVersion?: boolean | 'both';
573
+ /**
574
+ * When set to true and multiple tags match your configured pattern, the git tag matching logic will strictly prefer the tag which contain a semver preid which matches the one
575
+ * given to the nx release invocation.
576
+ *
577
+ * For example, let's say your pattern is "{projectName}@{version}" and you have the following tags for project "my-lib", which uses semver:
578
+ * - my-lib@1.2.4-beta.1
579
+ * - my-lib@1.2.4-alpha.1
580
+ * - my-lib@1.2.3
581
+ *
582
+ * If "strictPreid" is set to true and you run:
583
+ * - `nx release --preid beta`, the git tag "my-lib@1.2.4-beta.1" will be resolved.
584
+ * - `nx release --preid alpha`, the git tag "my-lib@1.2.4-alpha.1" will be resolved.
585
+ * - `nx release` (no preid), the git tag "my-lib@1.2.3" will be resolved.
586
+ *
587
+ * If "strictPreid" is set to false, the git tag "my-lib@1.2.4-beta.1" will always be resolved as the latest tag that matches the pattern,
588
+ * regardless of any preid which gets passed to nx release.
589
+ *
590
+ * NOTE: This feature was added in a minor version and is therefore set to false by default, but this may change in a future major version.
591
+ */
592
+ strictPreid?: boolean;
593
+ };
594
+ /**
595
+ * @deprecated Use `releaseTag.pattern` instead. Will be removed in Nx 23.
596
+ * Optionally override the git/release tag pattern to use. This field is the source of truth
597
+ * for changelog generation and release tagging, as well as for conventional commits parsing.
598
+ *
599
+ * It supports interpolating the version as {version} and (if releasing independently or forcing
600
+ * project level version control system releases) the project name as {projectName} within the string.
601
+ *
602
+ * The default releaseTagPattern for fixed/unified releases is: "v{version}"
603
+ * The default releaseTagPattern for independent releases at the project level is: "{projectName}@{version}"
604
+ */
605
+ releaseTagPattern?: string;
606
+ /**
607
+ * @deprecated Use `releaseTag.checkAllBranchesWhen` instead. Will be removed in Nx 23.
608
+ */
609
+ releaseTagPatternCheckAllBranchesWhen?: boolean | string[];
610
+ /**
611
+ * @deprecated Use `releaseTag.requireSemver` instead. Will be removed in Nx 23.
612
+ */
613
+ releaseTagPatternRequireSemver?: boolean;
614
+ /**
615
+ * @deprecated Use `releaseTag.preferDockerVersion` instead. Will be removed in Nx 23.
616
+ */
617
+ releaseTagPatternPreferDockerVersion?: boolean | 'both';
618
+ /**
619
+ * @deprecated Use `releaseTag.strictPreid` instead. Will be removed in Nx 23.
620
+ */
621
+ releaseTagPatternStrictPreid?: boolean;
622
+ /**
623
+ * Enable and configure automatic git operations as part of the release
624
+ */
625
+ git?: NxReleaseGitConfiguration;
626
+ conventionalCommits?: NxReleaseConventionalCommitsConfiguration;
627
+ /**
628
+ * Enables using version plans as a specifier source for versioning and
629
+ * to determine changes for changelog generation.
630
+ */
631
+ versionPlans?: NxReleaseVersionPlansConfiguration | boolean;
632
+ }
633
+ export interface NxSyncConfiguration {
634
+ /**
635
+ * List of workspace-wide sync generators to be run (not attached to targets).
636
+ */
637
+ globalGenerators?: string[];
638
+ /**
639
+ * Options for the sync generators.
640
+ */
641
+ generatorOptions?: {
642
+ [generatorName: string]: Record<string, unknown>;
643
+ };
644
+ /**
645
+ * Whether to automatically apply sync generator changes when running tasks.
646
+ * If not set, the user will be prompted in interactive mode.
647
+ * If set to `true`, the user will not be prompted and the changes will be applied.
648
+ * If set to `false`, the user will not be prompted and the changes will not be applied.
649
+ */
650
+ applyChanges?: boolean;
651
+ /**
652
+ * List of registered task sync generators to disable.
653
+ */
654
+ disabledTaskSyncGenerators?: string[];
655
+ }
656
+ /**
657
+ * Nx.json configuration
658
+ *
659
+ * @note: when adding properties here add them to `allowedWorkspaceExtensions` in adapter/compat.ts
660
+ */
661
+ export interface NxJsonConfiguration<T = '*' | string[]> {
662
+ $schema?: string;
663
+ /**
664
+ * Optional (additional) Nx.json configuration file which becomes a base for this one
665
+ */
666
+ extends?: string;
667
+ /**
668
+ * Map of files to projects that implicitly depend on them
669
+ * @deprecated use {@link namedInputs} instead. For more information see https://nx.dev/deprecated/global-implicit-dependencies#global-implicit-dependencies
670
+ */
671
+ implicitDependencies?: ImplicitDependencyEntry<T>;
672
+ /**
673
+ * Named inputs targets can refer to reduce duplication
674
+ */
675
+ namedInputs?: {
676
+ [inputName: string]: (string | InputDefinition)[];
677
+ };
678
+ /**
679
+ * Dependencies between different target names across all projects
680
+ */
681
+ targetDefaults?: TargetDefaults;
682
+ /**
683
+ * Default options for `nx affected`
684
+ * @deprecated use {@link defaultBase} instead. For more information see https://nx.dev/deprecated/affected-config#affected-config
685
+ */
686
+ affected?: NxAffectedConfig;
687
+ /**
688
+ * Default value for --base used by `nx affected` and `nx format`.
689
+ */
690
+ defaultBase?: string;
691
+ /**
692
+ * Where new apps + libs should be placed
693
+ */
694
+ workspaceLayout?: {
695
+ libsDir?: string;
696
+ appsDir?: string;
697
+ };
698
+ /**
699
+ * @deprecated Custom task runners will be replaced by a new API starting with Nx 21. More info: https://nx.dev/deprecated/custom-tasks-runner
700
+ * Available Task Runners for Nx to use
701
+ */
702
+ tasksRunnerOptions?: {
703
+ [tasksRunnerName: string]: {
704
+ /**
705
+ * Path to resolve the runner
706
+ */
707
+ runner?: string;
708
+ /**
709
+ * Default options for the runner
710
+ */
711
+ options?: any;
712
+ };
713
+ };
714
+ /**
715
+ * List of default values used by generators.
716
+ *
717
+ * These defaults are global. They are used when no other defaults are configured.
718
+ *
719
+ * Example:
720
+ *
721
+ * ```
722
+ * {
723
+ * "@nx/react": {
724
+ * "library": {
725
+ * "style": "scss"
726
+ * }
727
+ * }
728
+ * }
729
+ * ```
730
+ */
731
+ generators?: {
732
+ [collectionName: string]: {
733
+ [generatorName: string]: any;
734
+ };
735
+ };
736
+ /**
737
+ * Default generator collection. It is used when no collection is provided.
738
+ */
739
+ cli?: {
740
+ packageManager?: PackageManager;
741
+ defaultProjectName?: string;
742
+ };
743
+ /**
744
+ * Plugins for extending the project graph
745
+ */
746
+ plugins?: PluginConfiguration[];
747
+ /**
748
+ * Configuration for Nx Plugins
749
+ */
750
+ pluginsConfig?: Record<string, Record<string, unknown>>;
751
+ /**
752
+ * Default project. When project isn't provided, the default project
753
+ * will be used. Convenient for small workspaces with one main application.
754
+ */
755
+ defaultProject?: string;
756
+ /**
757
+ * Configures the Nx installation for a repo. Useful for maintaining a separate
758
+ * set of dependencies for Nx + Plugins compared to the base package.json, but also
759
+ * useful for workspaces that don't have a root package.json + node_modules.
760
+ */
761
+ installation?: NxInstallationConfiguration;
762
+ /**
763
+ * Configuration for `nx release` (versioning and publishing of applications and libraries)
764
+ */
765
+ release?: NxReleaseConfiguration;
766
+ /**
767
+ * If specified Nx will use nx-cloud by default with the given token.
768
+ * To use a different runner that accepts an access token, define it in {@link tasksRunnerOptions}
769
+ */
770
+ nxCloudAccessToken?: string;
771
+ /**
772
+ * If specified Nx will use nx-cloud by default with the given cloud id.
773
+ * To use a different runner that accepts a cloud id, define it in {@link tasksRunnerOptions}
774
+ */
775
+ nxCloudId?: string;
776
+ /**
777
+ * Specifies the url pointing to an instance of nx cloud. Used for remote
778
+ * caching and displaying run links.
779
+ */
780
+ nxCloudUrl?: string;
781
+ /**
782
+ * Specifies the encryption key used to encrypt artifacts data before sending it to nx cloud.
783
+ */
784
+ nxCloudEncryptionKey?: string;
785
+ /**
786
+ * Specifies how many tasks can be run in parallel.
787
+ */
788
+ parallel?: number;
789
+ /**
790
+ * Changes the directory used by Nx to store its cache.
791
+ */
792
+ cacheDirectory?: string;
793
+ /**
794
+ * Set this to false to disable the daemon.
795
+ */
796
+ useDaemonProcess?: boolean;
797
+ /**
798
+ * Set this to false to disable adding inference plugins when generating new projects
799
+ */
800
+ useInferencePlugins?: boolean;
801
+ /**
802
+ * Set this to true to disable connection to Nx Cloud
803
+ */
804
+ neverConnectToCloud?: boolean;
805
+ /**
806
+ * Configuration for the `nx sync` command.
807
+ */
808
+ sync?: NxSyncConfiguration;
809
+ /**
810
+ * Sets the maximum size of the local cache. Accepts a number followed by a unit (e.g. 100MB). Accepted units are B, KB, MB, and GB.
811
+ */
812
+ maxCacheSize?: string;
813
+ /**
814
+ * Settings for the Nx Terminal User Interface (TUI)
815
+ */
816
+ tui?: {
817
+ /**
818
+ * Whether to enable the TUI whenever possible (based on the current environment and terminal).
819
+ */
820
+ enabled?: boolean;
821
+ /**
822
+ * Whether to exit the TUI automatically after all tasks finish.
823
+ *
824
+ * - If set to `true`, the TUI will exit immediately.
825
+ * - If set to `false` the TUI will not automatically exit.
826
+ * - If set to a number, an interruptible countdown popup will be shown for that many seconds before the TUI exits.
827
+ */
828
+ autoExit?: boolean | number;
829
+ /**
830
+ * Whether to suppress hint popups that provide guidance for unhandled keys.
831
+ * Defaults to `false` (hints are shown).
832
+ */
833
+ suppressHints?: boolean;
834
+ };
835
+ }
836
+ export type PluginConfiguration = string | ExpandedPluginConfiguration;
837
+ export type ExpandedPluginConfiguration<T = unknown> = {
838
+ plugin: string;
839
+ options?: T;
840
+ include?: string[];
841
+ exclude?: string[];
842
+ };
843
+ export declare function readNxJson(root?: string): NxJsonConfiguration;
844
+ export declare function hasNxJson(root: string): boolean;
845
+ export {};
846
+ //# sourceMappingURL=nx-json.d.ts.map