@ohos-ports/nx 19.8.4-beta.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.
- package/.eslintrc.json +140 -0
- package/LICENSE +22 -0
- package/README.md +66 -0
- package/bin/init-local.d.ts +8 -0
- package/bin/init-local.js +183 -0
- package/bin/nx-cloud.d.ts +3 -0
- package/bin/nx-cloud.js +47 -0
- package/bin/nx.d.ts +2 -0
- package/bin/nx.js +226 -0
- package/bin/post-install.d.ts +1 -0
- package/bin/post-install.js +64 -0
- package/bin/run-executor.d.ts +1 -0
- package/bin/run-executor.js +66 -0
- package/executors.json +19 -0
- package/generators.json +10 -0
- package/migrations.json +94 -0
- package/node_modules/@nrwl/tao/LICENSE +22 -0
- package/node_modules/@nrwl/tao/README.md +18 -0
- package/node_modules/@nrwl/tao/index.d.ts +1 -0
- package/node_modules/@nrwl/tao/index.js +7 -0
- package/node_modules/@nrwl/tao/package.json +41 -0
- package/node_modules/@nrwl/tao/src/commands/ngcli-adapter.d.ts +1 -0
- package/node_modules/@nrwl/tao/src/commands/ngcli-adapter.js +5 -0
- package/node_modules/@nrwl/tao/src/shared/logger.d.ts +1 -0
- package/node_modules/@nrwl/tao/src/shared/logger.js +5 -0
- package/node_modules/@nrwl/tao/src/shared/nx.d.ts +1 -0
- package/node_modules/@nrwl/tao/src/shared/nx.js +5 -0
- package/node_modules/@nrwl/tao/src/shared/package-manager.d.ts +1 -0
- package/node_modules/@nrwl/tao/src/shared/package-manager.js +5 -0
- package/node_modules/@nrwl/tao/src/shared/project-graph.d.ts +1 -0
- package/node_modules/@nrwl/tao/src/shared/project-graph.js +5 -0
- package/node_modules/@nrwl/tao/src/shared/tree.d.ts +1 -0
- package/node_modules/@nrwl/tao/src/shared/tree.js +5 -0
- package/node_modules/@nrwl/tao/src/utils/app-root.d.ts +1 -0
- package/node_modules/@nrwl/tao/src/utils/app-root.js +5 -0
- package/package.json +198 -0
- package/plugins/package-json.d.ts +1 -0
- package/plugins/package-json.js +12 -0
- package/presets/core.json +1 -0
- package/presets/npm.json +7 -0
- package/release/changelog-renderer/index.d.ts +80 -0
- package/release/changelog-renderer/index.js +315 -0
- package/release/index.d.ts +4 -0
- package/release/index.js +12 -0
- package/schemas/nx-schema.json +819 -0
- package/schemas/project-schema.json +331 -0
- package/schemas/workspace-schema.json +185 -0
- package/src/adapter/angular-json.d.ts +10 -0
- package/src/adapter/angular-json.js +128 -0
- package/src/adapter/compat.d.ts +2 -0
- package/src/adapter/compat.js +143 -0
- package/src/adapter/decorate-cli.d.ts +1 -0
- package/src/adapter/decorate-cli.js +24 -0
- package/src/adapter/ngcli-adapter.d.ts +90 -0
- package/src/adapter/ngcli-adapter.js +854 -0
- package/src/adapter/rxjs-for-await.d.ts +109 -0
- package/src/adapter/rxjs-for-await.js +362 -0
- package/src/command-line/activate-powerpack/activate-powerpack.d.ts +2 -0
- package/src/command-line/activate-powerpack/activate-powerpack.js +34 -0
- package/src/command-line/activate-powerpack/command-object.d.ts +6 -0
- package/src/command-line/activate-powerpack/command-object.js +26 -0
- package/src/command-line/add/add.d.ts +3 -0
- package/src/command-line/add/add.js +150 -0
- package/src/command-line/add/command-object.d.ts +8 -0
- package/src/command-line/add/command-object.js +27 -0
- package/src/command-line/affected/affected.d.ts +10 -0
- package/src/command-line/affected/affected.js +88 -0
- package/src/command-line/affected/command-object.d.ts +6 -0
- package/src/command-line/affected/command-object.js +82 -0
- package/src/command-line/connect/command-object.d.ts +3 -0
- package/src/command-line/connect/command-object.js +32 -0
- package/src/command-line/connect/connect-to-nx-cloud.d.ts +12 -0
- package/src/command-line/connect/connect-to-nx-cloud.js +149 -0
- package/src/command-line/connect/view-logs.d.ts +1 -0
- package/src/command-line/connect/view-logs.js +55 -0
- package/src/command-line/daemon/command-object.d.ts +2 -0
- package/src/command-line/daemon/command-object.js +21 -0
- package/src/command-line/daemon/daemon.d.ts +2 -0
- package/src/command-line/daemon/daemon.js +26 -0
- package/src/command-line/deprecated/command-objects.d.ts +9 -0
- package/src/command-line/deprecated/command-objects.js +48 -0
- package/src/command-line/examples.d.ts +5 -0
- package/src/command-line/examples.js +379 -0
- package/src/command-line/exec/command-object.d.ts +2 -0
- package/src/command-line/exec/command-object.js +19 -0
- package/src/command-line/exec/exec.d.ts +1 -0
- package/src/command-line/exec/exec.js +142 -0
- package/src/command-line/format/command-object.d.ts +3 -0
- package/src/command-line/format/command-object.js +46 -0
- package/src/command-line/format/format.d.ts +2 -0
- package/src/command-line/format/format.js +195 -0
- package/src/command-line/generate/command-object.d.ts +2 -0
- package/src/command-line/generate/command-object.js +67 -0
- package/src/command-line/generate/generate.d.ts +21 -0
- package/src/command-line/generate/generate.js +262 -0
- package/src/command-line/generate/generator-utils.d.ts +18 -0
- package/src/command-line/generate/generator-utils.js +86 -0
- package/src/command-line/graph/command-object.d.ts +25 -0
- package/src/command-line/graph/command-object.js +75 -0
- package/src/command-line/graph/graph.d.ts +68 -0
- package/src/command-line/graph/graph.js +806 -0
- package/src/command-line/import/command-object.d.ts +2 -0
- package/src/command-line/import/command-object.js +44 -0
- package/src/command-line/import/import.d.ts +25 -0
- package/src/command-line/import/import.js +328 -0
- package/src/command-line/import/utils/merge-remote-source.d.ts +2 -0
- package/src/command-line/import/utils/merge-remote-source.js +14 -0
- package/src/command-line/import/utils/needs-install.d.ts +3 -0
- package/src/command-line/import/utils/needs-install.js +31 -0
- package/src/command-line/import/utils/prepare-source-repo.d.ts +2 -0
- package/src/command-line/import/utils/prepare-source-repo.js +27 -0
- package/src/command-line/init/command-object.d.ts +2 -0
- package/src/command-line/init/command-object.js +83 -0
- package/src/command-line/init/implementation/add-nx-to-monorepo.d.ts +6 -0
- package/src/command-line/init/implementation/add-nx-to-monorepo.js +130 -0
- package/src/command-line/init/implementation/add-nx-to-nest.d.ts +5 -0
- package/src/command-line/init/implementation/add-nx-to-nest.js +345 -0
- package/src/command-line/init/implementation/add-nx-to-npm-repo.d.ts +6 -0
- package/src/command-line/init/implementation/add-nx-to-npm-repo.js +72 -0
- package/src/command-line/init/implementation/angular/index.d.ts +2 -0
- package/src/command-line/init/implementation/angular/index.js +125 -0
- package/src/command-line/init/implementation/angular/integrated-workspace.d.ts +1 -0
- package/src/command-line/init/implementation/angular/integrated-workspace.js +12 -0
- package/src/command-line/init/implementation/angular/legacy-angular-versions.d.ts +2 -0
- package/src/command-line/init/implementation/angular/legacy-angular-versions.js +122 -0
- package/src/command-line/init/implementation/angular/standalone-workspace.d.ts +1 -0
- package/src/command-line/init/implementation/angular/standalone-workspace.js +175 -0
- package/src/command-line/init/implementation/angular/types.d.ts +20 -0
- package/src/command-line/init/implementation/angular/types.js +2 -0
- package/src/command-line/init/implementation/dot-nx/add-nx-scripts.d.ts +8 -0
- package/src/command-line/init/implementation/dot-nx/add-nx-scripts.js +106 -0
- package/src/command-line/init/implementation/dot-nx/nxw.d.ts +1 -0
- package/src/command-line/init/implementation/dot-nx/nxw.js +117 -0
- package/src/command-line/init/implementation/react/add-craco-commands-to-package-scripts.d.ts +1 -0
- package/src/command-line/init/implementation/react/add-craco-commands-to-package-scripts.js +21 -0
- package/src/command-line/init/implementation/react/add-vite-commands-to-package-scripts.d.ts +1 -0
- package/src/command-line/init/implementation/react/add-vite-commands-to-package-scripts.js +18 -0
- package/src/command-line/init/implementation/react/check-for-custom-webpack-setup.d.ts +1 -0
- package/src/command-line/init/implementation/react/check-for-custom-webpack-setup.js +17 -0
- package/src/command-line/init/implementation/react/check-for-uncommitted-changes.d.ts +1 -0
- package/src/command-line/init/implementation/react/check-for-uncommitted-changes.js +20 -0
- package/src/command-line/init/implementation/react/clean-up-files.d.ts +1 -0
- package/src/command-line/init/implementation/react/clean-up-files.js +30 -0
- package/src/command-line/init/implementation/react/index.d.ts +4 -0
- package/src/command-line/init/implementation/react/index.js +230 -0
- package/src/command-line/init/implementation/react/read-name-from-package-json.d.ts +1 -0
- package/src/command-line/init/implementation/react/read-name-from-package-json.js +16 -0
- package/src/command-line/init/implementation/react/rename-js-to-jsx.d.ts +1 -0
- package/src/command-line/init/implementation/react/rename-js-to-jsx.js +22 -0
- package/src/command-line/init/implementation/react/tsconfig-setup.d.ts +1 -0
- package/src/command-line/init/implementation/react/tsconfig-setup.js +108 -0
- package/src/command-line/init/implementation/react/write-craco-config.d.ts +1 -0
- package/src/command-line/init/implementation/react/write-craco-config.js +61 -0
- package/src/command-line/init/implementation/react/write-vite-config.d.ts +1 -0
- package/src/command-line/init/implementation/react/write-vite-config.js +37 -0
- package/src/command-line/init/implementation/react/write-vite-index-html.d.ts +1 -0
- package/src/command-line/init/implementation/react/write-vite-index-html.js +24 -0
- package/src/command-line/init/implementation/utils.d.ts +16 -0
- package/src/command-line/init/implementation/utils.js +205 -0
- package/src/command-line/init/init-v1.d.ts +11 -0
- package/src/command-line/init/init-v1.js +130 -0
- package/src/command-line/init/init-v2.d.ts +14 -0
- package/src/command-line/init/init-v2.js +239 -0
- package/src/command-line/list/command-object.d.ts +2 -0
- package/src/command-line/list/command-object.js +15 -0
- package/src/command-line/list/list.d.ts +13 -0
- package/src/command-line/list/list.js +44 -0
- package/src/command-line/login/command-object.d.ts +2 -0
- package/src/command-line/login/command-object.js +16 -0
- package/src/command-line/login/login.d.ts +5 -0
- package/src/command-line/login/login.js +16 -0
- package/src/command-line/logout/command-object.d.ts +2 -0
- package/src/command-line/logout/command-object.js +12 -0
- package/src/command-line/logout/logout.d.ts +4 -0
- package/src/command-line/logout/logout.js +13 -0
- package/src/command-line/migrate/command-object.d.ts +3 -0
- package/src/command-line/migrate/command-object.js +171 -0
- package/src/command-line/migrate/migrate.d.ts +114 -0
- package/src/command-line/migrate/migrate.js +1110 -0
- package/src/command-line/new/command-object.d.ts +2 -0
- package/src/command-line/new/command-object.js +25 -0
- package/src/command-line/new/new.d.ts +3 -0
- package/src/command-line/new/new.js +30 -0
- package/src/command-line/nx-commands.d.ts +10 -0
- package/src/command-line/nx-commands.js +128 -0
- package/src/command-line/release/changelog.d.ts +34 -0
- package/src/command-line/release/changelog.js +997 -0
- package/src/command-line/release/command-object.d.ts +69 -0
- package/src/command-line/release/command-object.js +297 -0
- package/src/command-line/release/config/config.d.ts +54 -0
- package/src/command-line/release/config/config.js +864 -0
- package/src/command-line/release/config/conventional-commits.d.ts +2 -0
- package/src/command-line/release/config/conventional-commits.js +98 -0
- package/src/command-line/release/config/deep-merge-json.d.ts +1 -0
- package/src/command-line/release/config/deep-merge-json.js +28 -0
- package/src/command-line/release/config/filter-release-groups.d.ts +15 -0
- package/src/command-line/release/config/filter-release-groups.js +150 -0
- package/src/command-line/release/config/version-plans.d.ts +42 -0
- package/src/command-line/release/config/version-plans.js +220 -0
- package/src/command-line/release/index.d.ts +30 -0
- package/src/command-line/release/index.js +37 -0
- package/src/command-line/release/plan-check.d.ts +4 -0
- package/src/command-line/release/plan-check.js +169 -0
- package/src/command-line/release/plan.d.ts +4 -0
- package/src/command-line/release/plan.js +259 -0
- package/src/command-line/release/publish.d.ts +4 -0
- package/src/command-line/release/publish.js +164 -0
- package/src/command-line/release/release.d.ts +5 -0
- package/src/command-line/release/release.js +242 -0
- package/src/command-line/release/utils/batch-projects-by-generator-config.d.ts +7 -0
- package/src/command-line/release/utils/batch-projects-by-generator-config.js +36 -0
- package/src/command-line/release/utils/exec-command.d.ts +1 -0
- package/src/command-line/release/utils/exec-command.js +34 -0
- package/src/command-line/release/utils/generate-version-plan-content.d.ts +1 -0
- package/src/command-line/release/utils/generate-version-plan-content.js +20 -0
- package/src/command-line/release/utils/get-touched-projects-for-group.d.ts +7 -0
- package/src/command-line/release/utils/get-touched-projects-for-group.js +78 -0
- package/src/command-line/release/utils/git.d.ts +67 -0
- package/src/command-line/release/utils/git.js +407 -0
- package/src/command-line/release/utils/github.d.ts +31 -0
- package/src/command-line/release/utils/github.js +322 -0
- package/src/command-line/release/utils/launch-editor.d.ts +1 -0
- package/src/command-line/release/utils/launch-editor.js +46 -0
- package/src/command-line/release/utils/markdown.d.ts +6 -0
- package/src/command-line/release/utils/markdown.js +28 -0
- package/src/command-line/release/utils/print-changes.d.ts +6 -0
- package/src/command-line/release/utils/print-changes.js +61 -0
- package/src/command-line/release/utils/print-config.d.ts +7 -0
- package/src/command-line/release/utils/print-config.js +36 -0
- package/src/command-line/release/utils/resolve-changelog-renderer.d.ts +2 -0
- package/src/command-line/release/utils/resolve-changelog-renderer.js +30 -0
- package/src/command-line/release/utils/resolve-nx-json-error-message.d.ts +1 -0
- package/src/command-line/release/utils/resolve-nx-json-error-message.js +52 -0
- package/src/command-line/release/utils/resolve-semver-specifier.d.ts +4 -0
- package/src/command-line/release/utils/resolve-semver-specifier.js +57 -0
- package/src/command-line/release/utils/semver.d.ts +11 -0
- package/src/command-line/release/utils/semver.js +58 -0
- package/src/command-line/release/utils/shared.d.ts +53 -0
- package/src/command-line/release/utils/shared.js +219 -0
- package/src/command-line/release/version.d.ts +60 -0
- package/src/command-line/release/version.js +463 -0
- package/src/command-line/repair/command-object.d.ts +2 -0
- package/src/command-line/repair/command-object.js +20 -0
- package/src/command-line/repair/repair.d.ts +3 -0
- package/src/command-line/repair/repair.js +36 -0
- package/src/command-line/report/command-object.d.ts +2 -0
- package/src/command-line/report/command-object.js +11 -0
- package/src/command-line/report/report.d.ts +57 -0
- package/src/command-line/report/report.js +303 -0
- package/src/command-line/reset/command-object.d.ts +8 -0
- package/src/command-line/reset/command-object.js +26 -0
- package/src/command-line/reset/reset.d.ts +2 -0
- package/src/command-line/reset/reset.js +131 -0
- package/src/command-line/run/command-object.d.ts +6 -0
- package/src/command-line/run/command-object.js +42 -0
- package/src/command-line/run/executor-utils.d.ts +7 -0
- package/src/command-line/run/executor-utils.js +86 -0
- package/src/command-line/run/run-one.d.ts +7 -0
- package/src/command-line/run/run-one.js +116 -0
- package/src/command-line/run/run.d.ts +51 -0
- package/src/command-line/run/run.js +179 -0
- package/src/command-line/run-many/command-object.d.ts +2 -0
- package/src/command-line/run-many/command-object.js +17 -0
- package/src/command-line/run-many/run-many.d.ts +10 -0
- package/src/command-line/run-many/run-many.js +92 -0
- package/src/command-line/show/command-object.d.ts +26 -0
- package/src/command-line/show/command-object.js +115 -0
- package/src/command-line/show/project.d.ts +2 -0
- package/src/command-line/show/project.js +60 -0
- package/src/command-line/show/projects.d.ts +2 -0
- package/src/command-line/show/projects.js +77 -0
- package/src/command-line/sync/command-object.d.ts +6 -0
- package/src/command-line/sync/command-object.js +20 -0
- package/src/command-line/sync/sync.d.ts +6 -0
- package/src/command-line/sync/sync.js +114 -0
- package/src/command-line/watch/command-object.d.ts +2 -0
- package/src/command-line/watch/command-object.js +64 -0
- package/src/command-line/watch/watch.d.ts +23 -0
- package/src/command-line/watch/watch.js +173 -0
- package/src/command-line/yargs-utils/documentation.d.ts +2 -0
- package/src/command-line/yargs-utils/documentation.js +11 -0
- package/src/command-line/yargs-utils/shared-options.d.ts +75 -0
- package/src/command-line/yargs-utils/shared-options.js +253 -0
- package/src/commands-runner/command-graph.d.ts +13 -0
- package/src/commands-runner/command-graph.js +2 -0
- package/src/commands-runner/create-command-graph.d.ts +4 -0
- package/src/commands-runner/create-command-graph.js +67 -0
- package/src/commands-runner/get-command-projects.d.ts +3 -0
- package/src/commands-runner/get-command-projects.js +18 -0
- package/src/config/calculate-default-project-name.d.ts +4 -0
- package/src/config/calculate-default-project-name.js +41 -0
- package/src/config/configuration.d.ts +8 -0
- package/src/config/configuration.js +17 -0
- package/src/config/misc-interfaces.d.ts +212 -0
- package/src/config/misc-interfaces.js +2 -0
- package/src/config/nx-json.d.ts +479 -0
- package/src/config/nx-json.js +39 -0
- package/src/config/project-graph.d.ts +137 -0
- package/src/config/project-graph.js +37 -0
- package/src/config/schema-utils.d.ts +15 -0
- package/src/config/schema-utils.js +58 -0
- package/src/config/task-graph.d.ts +104 -0
- package/src/config/task-graph.js +2 -0
- package/src/config/to-project-name.d.ts +5 -0
- package/src/config/to-project-name.js +12 -0
- package/src/config/workspace-json-project-json.d.ts +225 -0
- package/src/config/workspace-json-project-json.js +2 -0
- package/src/core/graph/environment.js +1 -0
- package/src/core/graph/favicon.ico +0 -0
- package/src/core/graph/index.html +30 -0
- package/src/core/graph/main.js +1 -0
- package/src/core/graph/runtime.js +1 -0
- package/src/core/graph/styles.css +3 -0
- package/src/core/graph/styles.js +1 -0
- package/src/daemon/cache.d.ts +9 -0
- package/src/daemon/cache.js +68 -0
- package/src/daemon/client/client.d.ts +72 -0
- package/src/daemon/client/client.js +505 -0
- package/src/daemon/client/daemon-socket-messenger.d.ts +12 -0
- package/src/daemon/client/daemon-socket-messenger.js +26 -0
- package/src/daemon/client/exec-is-server-available.d.ts +1 -0
- package/src/daemon/client/exec-is-server-available.js +11 -0
- package/src/daemon/client/generate-help-output.d.ts +1 -0
- package/src/daemon/client/generate-help-output.js +26 -0
- package/src/daemon/is-on-daemon.d.ts +1 -0
- package/src/daemon/is-on-daemon.js +6 -0
- package/src/daemon/message-types/flush-sync-generator-changes-to-disk.d.ts +6 -0
- package/src/daemon/message-types/flush-sync-generator-changes-to-disk.js +11 -0
- package/src/daemon/message-types/force-shutdown.d.ts +5 -0
- package/src/daemon/message-types/force-shutdown.js +11 -0
- package/src/daemon/message-types/get-context-file-data.d.ts +5 -0
- package/src/daemon/message-types/get-context-file-data.js +11 -0
- package/src/daemon/message-types/get-files-in-directory.d.ts +6 -0
- package/src/daemon/message-types/get-files-in-directory.js +11 -0
- package/src/daemon/message-types/get-nx-workspace-files.d.ts +6 -0
- package/src/daemon/message-types/get-nx-workspace-files.js +11 -0
- package/src/daemon/message-types/get-registered-sync-generators.d.ts +5 -0
- package/src/daemon/message-types/get-registered-sync-generators.js +11 -0
- package/src/daemon/message-types/get-sync-generator-changes.d.ts +6 -0
- package/src/daemon/message-types/get-sync-generator-changes.js +11 -0
- package/src/daemon/message-types/glob.d.ts +7 -0
- package/src/daemon/message-types/glob.js +11 -0
- package/src/daemon/message-types/hash-glob.d.ts +7 -0
- package/src/daemon/message-types/hash-glob.js +11 -0
- package/src/daemon/message-types/task-history.d.ts +19 -0
- package/src/daemon/message-types/task-history.js +27 -0
- package/src/daemon/message-types/update-workspace-context.d.ts +8 -0
- package/src/daemon/message-types/update-workspace-context.js +11 -0
- package/src/daemon/server/file-watching/changed-projects.d.ts +10 -0
- package/src/daemon/server/file-watching/changed-projects.js +44 -0
- package/src/daemon/server/file-watching/file-watcher-sockets.d.ts +12 -0
- package/src/daemon/server/file-watching/file-watcher-sockets.js +66 -0
- package/src/daemon/server/handle-context-file-data.d.ts +2 -0
- package/src/daemon/server/handle-context-file-data.js +12 -0
- package/src/daemon/server/handle-flush-sync-generator-changes-to-disk.d.ts +2 -0
- package/src/daemon/server/handle-flush-sync-generator-changes-to-disk.js +11 -0
- package/src/daemon/server/handle-force-shutdown.d.ts +5 -0
- package/src/daemon/server/handle-force-shutdown.js +18 -0
- package/src/daemon/server/handle-get-files-in-directory.d.ts +2 -0
- package/src/daemon/server/handle-get-files-in-directory.js +12 -0
- package/src/daemon/server/handle-get-registered-sync-generators.d.ts +2 -0
- package/src/daemon/server/handle-get-registered-sync-generators.js +11 -0
- package/src/daemon/server/handle-get-sync-generator-changes.d.ts +2 -0
- package/src/daemon/server/handle-get-sync-generator-changes.js +19 -0
- package/src/daemon/server/handle-glob.d.ts +2 -0
- package/src/daemon/server/handle-glob.js +12 -0
- package/src/daemon/server/handle-hash-glob.d.ts +2 -0
- package/src/daemon/server/handle-hash-glob.js +12 -0
- package/src/daemon/server/handle-hash-tasks.d.ts +10 -0
- package/src/daemon/server/handle-hash-tasks.js +35 -0
- package/src/daemon/server/handle-nx-workspace-files.d.ts +2 -0
- package/src/daemon/server/handle-nx-workspace-files.js +12 -0
- package/src/daemon/server/handle-outputs-tracking.d.ts +15 -0
- package/src/daemon/server/handle-outputs-tracking.js +35 -0
- package/src/daemon/server/handle-process-in-background.d.ts +6 -0
- package/src/daemon/server/handle-process-in-background.js +32 -0
- package/src/daemon/server/handle-request-project-graph.d.ts +2 -0
- package/src/daemon/server/handle-request-project-graph.js +36 -0
- package/src/daemon/server/handle-request-shutdown.d.ts +5 -0
- package/src/daemon/server/handle-request-shutdown.js +27 -0
- package/src/daemon/server/handle-task-history.d.ts +13 -0
- package/src/daemon/server/handle-task-history.js +30 -0
- package/src/daemon/server/handle-update-workspace-context.d.ts +2 -0
- package/src/daemon/server/handle-update-workspace-context.js +11 -0
- package/src/daemon/server/logger.d.ts +18 -0
- package/src/daemon/server/logger.js +37 -0
- package/src/daemon/server/outputs-tracking.d.ts +8 -0
- package/src/daemon/server/outputs-tracking.js +93 -0
- package/src/daemon/server/plugins.d.ts +3 -0
- package/src/daemon/server/plugins.js +32 -0
- package/src/daemon/server/project-graph-incremental-recomputation.d.ts +24 -0
- package/src/daemon/server/project-graph-incremental-recomputation.js +300 -0
- package/src/daemon/server/server.d.ts +9 -0
- package/src/daemon/server/server.js +380 -0
- package/src/daemon/server/shutdown-utils.d.ts +17 -0
- package/src/daemon/server/shutdown-utils.js +89 -0
- package/src/daemon/server/start.d.ts +1 -0
- package/src/daemon/server/start.js +17 -0
- package/src/daemon/server/sync-generators.d.ts +13 -0
- package/src/daemon/server/sync-generators.js +357 -0
- package/src/daemon/server/watcher.d.ts +11 -0
- package/src/daemon/server/watcher.js +103 -0
- package/src/daemon/socket-utils.d.ts +12 -0
- package/src/daemon/socket-utils.js +55 -0
- package/src/daemon/tmp-dir.d.ts +12 -0
- package/src/daemon/tmp-dir.js +70 -0
- package/src/devkit-exports.d.ts +136 -0
- package/src/devkit-exports.js +142 -0
- package/src/devkit-internals.d.ts +26 -0
- package/src/devkit-internals.js +52 -0
- package/src/devkit-testing-exports.d.ts +2 -0
- package/src/devkit-testing-exports.js +8 -0
- package/src/executors/noop/noop.impl.d.ts +3 -0
- package/src/executors/noop/noop.impl.js +6 -0
- package/src/executors/noop/schema.json +10 -0
- package/src/executors/run-commands/run-commands.impl.d.ts +57 -0
- package/src/executors/run-commands/run-commands.impl.js +480 -0
- package/src/executors/run-commands/schema.json +184 -0
- package/src/executors/run-script/run-script.impl.d.ts +8 -0
- package/src/executors/run-script/run-script.impl.js +57 -0
- package/src/executors/run-script/schema.json +28 -0
- package/src/executors/utils/convert-nx-executor.d.ts +10 -0
- package/src/executors/utils/convert-nx-executor.js +85 -0
- package/src/generators/internal-utils/format-changed-files-with-prettier-if-available.d.ts +14 -0
- package/src/generators/internal-utils/format-changed-files-with-prettier-if-available.js +58 -0
- package/src/generators/testing-utils/create-tree-with-empty-workspace.d.ts +11 -0
- package/src/generators/testing-utils/create-tree-with-empty-workspace.js +52 -0
- package/src/generators/testing-utils/create-tree.d.ts +5 -0
- package/src/generators/testing-utils/create-tree.js +10 -0
- package/src/generators/tree.d.ts +125 -0
- package/src/generators/tree.js +309 -0
- package/src/generators/utils/glob.d.ts +22 -0
- package/src/generators/utils/glob.js +51 -0
- package/src/generators/utils/json.d.ts +28 -0
- package/src/generators/utils/json.js +48 -0
- package/src/generators/utils/nx-json.d.ts +11 -0
- package/src/generators/utils/nx-json.js +58 -0
- package/src/generators/utils/project-configuration.d.ts +42 -0
- package/src/generators/utils/project-configuration.js +278 -0
- package/src/hasher/create-task-hasher.d.ts +4 -0
- package/src/hasher/create-task-hasher.js +15 -0
- package/src/hasher/file-hasher.d.ts +2 -0
- package/src/hasher/file-hasher.js +18 -0
- package/src/hasher/hash-task.d.ts +8 -0
- package/src/hasher/hash-task.js +85 -0
- package/src/hasher/native-task-hasher-impl.d.ts +18 -0
- package/src/hasher/native-task-hasher-impl.js +37 -0
- package/src/hasher/node-task-hasher-impl.d.ts +48 -0
- package/src/hasher/node-task-hasher-impl.js +449 -0
- package/src/hasher/task-hasher.d.ts +128 -0
- package/src/hasher/task-hasher.js +266 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +5 -0
- package/src/migrations/update-15-0-0/migrate-to-inputs.d.ts +2 -0
- package/src/migrations/update-15-0-0/migrate-to-inputs.js +102 -0
- package/src/migrations/update-15-0-0/prefix-outputs.d.ts +2 -0
- package/src/migrations/update-15-0-0/prefix-outputs.js +49 -0
- package/src/migrations/update-16-0-0/remove-nrwl-cli.d.ts +2 -0
- package/src/migrations/update-16-0-0/remove-nrwl-cli.js +16 -0
- package/src/migrations/update-16-0-0/update-depends-on-to-tokens.d.ts +2 -0
- package/src/migrations/update-16-0-0/update-depends-on-to-tokens.js +97 -0
- package/src/migrations/update-16-0-0/update-nx-cloud-runner.d.ts +2 -0
- package/src/migrations/update-16-0-0/update-nx-cloud-runner.js +29 -0
- package/src/migrations/update-16-2-0/remove-run-commands-output-path.d.ts +2 -0
- package/src/migrations/update-16-2-0/remove-run-commands-output-path.js +45 -0
- package/src/migrations/update-16-8-0/escape-dollar-sign-env-variables.d.ts +12 -0
- package/src/migrations/update-16-8-0/escape-dollar-sign-env-variables.js +67 -0
- package/src/migrations/update-16-9-0/remove-project-name-and-root-format.d.ts +2 -0
- package/src/migrations/update-16-9-0/remove-project-name-and-root-format.js +21 -0
- package/src/migrations/update-17-0-0/move-cache-directory.d.ts +2 -0
- package/src/migrations/update-17-0-0/move-cache-directory.js +35 -0
- package/src/migrations/update-17-0-0/rm-default-collection-npm-scope.d.ts +2 -0
- package/src/migrations/update-17-0-0/rm-default-collection-npm-scope.js +72 -0
- package/src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options.d.ts +2 -0
- package/src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options.js +122 -0
- package/src/migrations/update-17-2-0/move-default-base.d.ts +5 -0
- package/src/migrations/update-17-2-0/move-default-base.js +21 -0
- package/src/migrations/update-17-3-0/nx-release-path.d.ts +3 -0
- package/src/migrations/update-17-3-0/nx-release-path.js +47 -0
- package/src/migrations/update-17-3-0/update-nxw.d.ts +2 -0
- package/src/migrations/update-17-3-0/update-nxw.js +7 -0
- package/src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces.d.ts +2 -0
- package/src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces.js +11 -0
- package/src/migrations/update-19-2-0/move-workspace-data-directory.d.ts +4 -0
- package/src/migrations/update-19-2-0/move-workspace-data-directory.js +33 -0
- package/src/migrations/update-19-2-4/set-project-name.d.ts +2 -0
- package/src/migrations/update-19-2-4/set-project-name.js +34 -0
- package/src/native/assert-supported-platform.d.ts +1 -0
- package/src/native/assert-supported-platform.js +38 -0
- package/src/native/browser.js +1 -0
- package/src/native/index.d.ts +282 -0
- package/src/native/index.js +94 -0
- package/src/native/native-bindings.js +405 -0
- package/src/native/native-file-cache-location.d.ts +1 -0
- package/src/native/native-file-cache-location.js +22 -0
- package/src/native/nx.openharmony-arm64.node +0 -0
- package/src/native/nx.wasi-browser.js +114 -0
- package/src/native/nx.wasi.cjs +145 -0
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/native/transform-objects.d.ts +3 -0
- package/src/native/transform-objects.js +51 -0
- package/src/native/wasi-worker-browser.mjs +32 -0
- package/src/native/wasi-worker.mjs +63 -0
- package/src/nx-cloud/debug-logger.d.ts +1 -0
- package/src/nx-cloud/debug-logger.js +8 -0
- package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.d.ts +14 -0
- package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.js +159 -0
- package/src/nx-cloud/generators/connect-to-nx-cloud/schema.json +41 -0
- package/src/nx-cloud/models/onboarding-status.d.ts +1 -0
- package/src/nx-cloud/models/onboarding-status.js +2 -0
- package/src/nx-cloud/nx-cloud-tasks-runner-shell.d.ts +16 -0
- package/src/nx-cloud/nx-cloud-tasks-runner-shell.js +41 -0
- package/src/nx-cloud/resolution-helpers.d.ts +1 -0
- package/src/nx-cloud/resolution-helpers.js +19 -0
- package/src/nx-cloud/update-manager.d.ts +19 -0
- package/src/nx-cloud/update-manager.js +240 -0
- package/src/nx-cloud/utilities/axios.d.ts +2 -0
- package/src/nx-cloud/utilities/axios.js +24 -0
- package/src/nx-cloud/utilities/client.d.ts +10 -0
- package/src/nx-cloud/utilities/client.js +35 -0
- package/src/nx-cloud/utilities/environment.d.ts +3 -0
- package/src/nx-cloud/utilities/environment.js +47 -0
- package/src/nx-cloud/utilities/get-cloud-options.d.ts +5 -0
- package/src/nx-cloud/utilities/get-cloud-options.js +23 -0
- package/src/nx-cloud/utilities/is-workspace-claimed.d.ts +1 -0
- package/src/nx-cloud/utilities/is-workspace-claimed.js +25 -0
- package/src/nx-cloud/utilities/onboarding.d.ts +5 -0
- package/src/nx-cloud/utilities/onboarding.js +28 -0
- package/src/nx-cloud/utilities/url-shorten.d.ts +10 -0
- package/src/nx-cloud/utilities/url-shorten.js +156 -0
- package/src/plugins/js/hasher/hasher.d.ts +5 -0
- package/src/plugins/js/hasher/hasher.js +51 -0
- package/src/plugins/js/index.d.ts +4 -0
- package/src/plugins/js/index.js +106 -0
- package/src/plugins/js/lock-file/lock-file.d.ts +34 -0
- package/src/plugins/js/lock-file/lock-file.js +211 -0
- package/src/plugins/js/lock-file/npm-parser.d.ts +7 -0
- package/src/plugins/js/lock-file/npm-parser.js +475 -0
- package/src/plugins/js/lock-file/pnpm-parser.d.ts +7 -0
- package/src/plugins/js/lock-file/pnpm-parser.js +466 -0
- package/src/plugins/js/lock-file/project-graph-pruning.d.ts +7 -0
- package/src/plugins/js/lock-file/project-graph-pruning.js +154 -0
- package/src/plugins/js/lock-file/utils/package-json.d.ts +10 -0
- package/src/plugins/js/lock-file/utils/package-json.js +33 -0
- package/src/plugins/js/lock-file/utils/pnpm-normalizer.d.ts +20 -0
- package/src/plugins/js/lock-file/utils/pnpm-normalizer.js +854 -0
- package/src/plugins/js/lock-file/yarn-parser.d.ts +7 -0
- package/src/plugins/js/lock-file/yarn-parser.js +436 -0
- package/src/plugins/js/package-json/create-package-json.d.ts +29 -0
- package/src/plugins/js/package-json/create-package-json.js +247 -0
- package/src/plugins/js/project-graph/affected/lock-file-changes.d.ts +4 -0
- package/src/plugins/js/project-graph/affected/lock-file-changes.js +28 -0
- package/src/plugins/js/project-graph/affected/npm-packages.d.ts +4 -0
- package/src/plugins/js/project-graph/affected/npm-packages.js +68 -0
- package/src/plugins/js/project-graph/affected/touched-projects.d.ts +2 -0
- package/src/plugins/js/project-graph/affected/touched-projects.js +18 -0
- package/src/plugins/js/project-graph/affected/tsconfig-json-changes.d.ts +4 -0
- package/src/plugins/js/project-graph/affected/tsconfig-json-changes.js +63 -0
- package/src/plugins/js/project-graph/build-dependencies/build-dependencies.d.ts +6 -0
- package/src/plugins/js/project-graph/build-dependencies/build-dependencies.js +45 -0
- package/src/plugins/js/project-graph/build-dependencies/explicit-package-json-dependencies.d.ts +4 -0
- package/src/plugins/js/project-graph/build-dependencies/explicit-package-json-dependencies.js +94 -0
- package/src/plugins/js/project-graph/build-dependencies/explicit-project-dependencies.d.ts +4 -0
- package/src/plugins/js/project-graph/build-dependencies/explicit-project-dependencies.js +88 -0
- package/src/plugins/js/project-graph/build-dependencies/strip-source-code.d.ts +7 -0
- package/src/plugins/js/project-graph/build-dependencies/strip-source-code.js +155 -0
- package/src/plugins/js/project-graph/build-dependencies/target-project-locator.d.ts +59 -0
- package/src/plugins/js/project-graph/build-dependencies/target-project-locator.js +296 -0
- package/src/plugins/js/project-graph/build-dependencies/typescript-import-locator.d.ts +16 -0
- package/src/plugins/js/project-graph/build-dependencies/typescript-import-locator.js +120 -0
- package/src/plugins/js/project-graph/build-nodes/build-npm-package-nodes.d.ts +2 -0
- package/src/plugins/js/project-graph/build-nodes/build-npm-package-nodes.js +31 -0
- package/src/plugins/js/utils/config.d.ts +2 -0
- package/src/plugins/js/utils/config.js +68 -0
- package/src/plugins/js/utils/register.d.ts +152 -0
- package/src/plugins/js/utils/register.js +343 -0
- package/src/plugins/js/utils/resolve-relative-to-dir.d.ts +5 -0
- package/src/plugins/js/utils/resolve-relative-to-dir.js +17 -0
- package/src/plugins/js/utils/typescript.d.ts +14 -0
- package/src/plugins/js/utils/typescript.js +97 -0
- package/src/plugins/js/versions.d.ts +1 -0
- package/src/plugins/js/versions.js +4 -0
- package/src/plugins/package-json/create-nodes.d.ts +20 -0
- package/src/plugins/package-json/create-nodes.js +187 -0
- package/src/plugins/package-json/index.d.ts +2 -0
- package/src/plugins/package-json/index.js +6 -0
- package/src/plugins/project-json/build-nodes/project-json.d.ts +6 -0
- package/src/plugins/project-json/build-nodes/project-json.js +45 -0
- package/src/project-graph/affected/affected-project-graph-models.d.ts +11 -0
- package/src/project-graph/affected/affected-project-graph-models.js +2 -0
- package/src/project-graph/affected/affected-project-graph.d.ts +4 -0
- package/src/project-graph/affected/affected-project-graph.js +82 -0
- package/src/project-graph/affected/locators/project-glob-changes.d.ts +2 -0
- package/src/project-graph/affected/locators/project-glob-changes.js +31 -0
- package/src/project-graph/affected/locators/workspace-json-changes.d.ts +4 -0
- package/src/project-graph/affected/locators/workspace-json-changes.js +47 -0
- package/src/project-graph/affected/locators/workspace-projects.d.ts +3 -0
- package/src/project-graph/affected/locators/workspace-projects.js +74 -0
- package/src/project-graph/build-project-graph.d.ts +22 -0
- package/src/project-graph/build-project-graph.js +292 -0
- package/src/project-graph/error-types.d.ts +135 -0
- package/src/project-graph/error-types.js +305 -0
- package/src/project-graph/file-map-utils.d.ts +15 -0
- package/src/project-graph/file-map-utils.js +55 -0
- package/src/project-graph/file-utils.d.ts +30 -0
- package/src/project-graph/file-utils.js +179 -0
- package/src/project-graph/nx-deps-cache.d.ts +48 -0
- package/src/project-graph/nx-deps-cache.js +227 -0
- package/src/project-graph/operators.d.ts +12 -0
- package/src/project-graph/operators.js +114 -0
- package/src/project-graph/plugins/index.d.ts +3 -0
- package/src/project-graph/plugins/index.js +10 -0
- package/src/project-graph/plugins/internal-api.d.ts +29 -0
- package/src/project-graph/plugins/internal-api.js +134 -0
- package/src/project-graph/plugins/isolation/index.d.ts +3 -0
- package/src/project-graph/plugins/isolation/index.js +14 -0
- package/src/project-graph/plugins/isolation/messaging.d.ts +125 -0
- package/src/project-graph/plugins/isolation/messaging.js +46 -0
- package/src/project-graph/plugins/isolation/plugin-pool.d.ts +3 -0
- package/src/project-graph/plugins/isolation/plugin-pool.js +301 -0
- package/src/project-graph/plugins/isolation/plugin-worker.d.ts +1 -0
- package/src/project-graph/plugins/isolation/plugin-worker.js +158 -0
- package/src/project-graph/plugins/loader.d.ts +24 -0
- package/src/project-graph/plugins/loader.js +220 -0
- package/src/project-graph/plugins/public-api.d.ts +130 -0
- package/src/project-graph/plugins/public-api.js +4 -0
- package/src/project-graph/plugins/utils.d.ts +8 -0
- package/src/project-graph/plugins/utils.js +63 -0
- package/src/project-graph/project-graph-builder.d.ts +133 -0
- package/src/project-graph/project-graph-builder.js +379 -0
- package/src/project-graph/project-graph.d.ts +51 -0
- package/src/project-graph/project-graph.js +261 -0
- package/src/project-graph/utils/build-all-workspace-files.d.ts +2 -0
- package/src/project-graph/utils/build-all-workspace-files.js +14 -0
- package/src/project-graph/utils/find-project-for-path.d.ts +20 -0
- package/src/project-graph/utils/find-project-for-path.js +55 -0
- package/src/project-graph/utils/implicit-project-dependencies.d.ts +3 -0
- package/src/project-graph/utils/implicit-project-dependencies.js +18 -0
- package/src/project-graph/utils/normalize-project-nodes.d.ts +6 -0
- package/src/project-graph/utils/normalize-project-nodes.js +88 -0
- package/src/project-graph/utils/project-configuration-utils.d.ts +74 -0
- package/src/project-graph/utils/project-configuration-utils.js +781 -0
- package/src/project-graph/utils/retrieve-workspace-files.d.ts +30 -0
- package/src/project-graph/utils/retrieve-workspace-files.js +88 -0
- package/src/tasks-runner/batch/batch-messages.d.ts +33 -0
- package/src/tasks-runner/batch/batch-messages.js +9 -0
- package/src/tasks-runner/batch/run-batch.d.ts +1 -0
- package/src/tasks-runner/batch/run-batch.js +77 -0
- package/src/tasks-runner/cache.d.ts +64 -0
- package/src/tasks-runner/cache.js +399 -0
- package/src/tasks-runner/create-task-graph.d.ts +28 -0
- package/src/tasks-runner/create-task-graph.js +242 -0
- package/src/tasks-runner/default-tasks-runner.d.ts +26 -0
- package/src/tasks-runner/default-tasks-runner.js +62 -0
- package/src/tasks-runner/fork.d.ts +1 -0
- package/src/tasks-runner/fork.js +30 -0
- package/src/tasks-runner/forked-process-task-runner.d.ts +42 -0
- package/src/tasks-runner/forked-process-task-runner.js +405 -0
- package/src/tasks-runner/init-tasks-runner.d.ts +13 -0
- package/src/tasks-runner/init-tasks-runner.js +61 -0
- package/src/tasks-runner/life-cycle.d.ts +43 -0
- package/src/tasks-runner/life-cycle.js +71 -0
- package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.d.ts +25 -0
- package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.js +353 -0
- package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.d.ts +24 -0
- package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.js +228 -0
- package/src/tasks-runner/life-cycles/empty-terminal-output-life-cycle.d.ts +5 -0
- package/src/tasks-runner/life-cycles/empty-terminal-output-life-cycle.js +16 -0
- package/src/tasks-runner/life-cycles/formatting-utils.d.ts +3 -0
- package/src/tasks-runner/life-cycles/formatting-utils.js +55 -0
- package/src/tasks-runner/life-cycles/invoke-runner-terminal-output-life-cycle.d.ts +13 -0
- package/src/tasks-runner/life-cycles/invoke-runner-terminal-output-life-cycle.js +67 -0
- package/src/tasks-runner/life-cycles/pretty-time.d.ts +4 -0
- package/src/tasks-runner/life-cycles/pretty-time.js +73 -0
- package/src/tasks-runner/life-cycles/static-run-many-terminal-output-life-cycle.d.ts +29 -0
- package/src/tasks-runner/life-cycles/static-run-many-terminal-output-life-cycle.js +106 -0
- package/src/tasks-runner/life-cycles/static-run-one-terminal-output-life-cycle.d.ts +28 -0
- package/src/tasks-runner/life-cycles/static-run-one-terminal-output-life-cycle.js +97 -0
- package/src/tasks-runner/life-cycles/store-run-information-life-cycle.d.ts +17 -0
- package/src/tasks-runner/life-cycles/store-run-information-life-cycle.js +87 -0
- package/src/tasks-runner/life-cycles/task-history-life-cycle-old.d.ts +9 -0
- package/src/tasks-runner/life-cycles/task-history-life-cycle-old.js +54 -0
- package/src/tasks-runner/life-cycles/task-history-life-cycle.d.ts +10 -0
- package/src/tasks-runner/life-cycles/task-history-life-cycle.js +55 -0
- package/src/tasks-runner/life-cycles/task-profiling-life-cycle.d.ts +14 -0
- package/src/tasks-runner/life-cycles/task-profiling-life-cycle.js +73 -0
- package/src/tasks-runner/life-cycles/task-results-life-cycle.d.ts +6 -0
- package/src/tasks-runner/life-cycles/task-results-life-cycle.js +17 -0
- package/src/tasks-runner/life-cycles/task-timings-life-cycle.d.ts +8 -0
- package/src/tasks-runner/life-cycles/task-timings-life-cycle.js +39 -0
- package/src/tasks-runner/life-cycles/view-logs-utils.d.ts +1 -0
- package/src/tasks-runner/life-cycles/view-logs-utils.js +15 -0
- package/src/tasks-runner/pseudo-ipc.d.ts +48 -0
- package/src/tasks-runner/pseudo-ipc.js +140 -0
- package/src/tasks-runner/pseudo-terminal.d.ts +45 -0
- package/src/tasks-runner/pseudo-terminal.js +168 -0
- package/src/tasks-runner/remove-old-cache-records.d.ts +1 -0
- package/src/tasks-runner/remove-old-cache-records.js +60 -0
- package/src/tasks-runner/run-command.d.ts +38 -0
- package/src/tasks-runner/run-command.js +590 -0
- package/src/tasks-runner/task-env.d.ts +20 -0
- package/src/tasks-runner/task-env.js +171 -0
- package/src/tasks-runner/task-graph-utils.d.ts +10 -0
- package/src/tasks-runner/task-graph-utils.js +88 -0
- package/src/tasks-runner/task-orchestrator.d.ts +53 -0
- package/src/tasks-runner/task-orchestrator.js +458 -0
- package/src/tasks-runner/tasks-runner.d.ts +23 -0
- package/src/tasks-runner/tasks-runner.js +2 -0
- package/src/tasks-runner/tasks-schedule.d.ts +41 -0
- package/src/tasks-runner/tasks-schedule.js +192 -0
- package/src/tasks-runner/utils.d.ts +57 -0
- package/src/tasks-runner/utils.js +392 -0
- package/src/utils/ab-testing.d.ts +51 -0
- package/src/utils/ab-testing.js +112 -0
- package/src/utils/all-file-data.d.ts +2 -0
- package/src/utils/all-file-data.js +8 -0
- package/src/utils/app-root.d.ts +8 -0
- package/src/utils/app-root.js +12 -0
- package/src/utils/assert-workspace-validity.d.ts +3 -0
- package/src/utils/assert-workspace-validity.js +84 -0
- package/src/utils/async-iterator.d.ts +2 -0
- package/src/utils/async-iterator.js +18 -0
- package/src/utils/cache-directory.d.ts +7 -0
- package/src/utils/cache-directory.js +71 -0
- package/src/utils/child-process.d.ts +18 -0
- package/src/utils/child-process.js +119 -0
- package/src/utils/chunkify.d.ts +11 -0
- package/src/utils/chunkify.js +44 -0
- package/src/utils/code-frames.d.ts +14 -0
- package/src/utils/code-frames.js +118 -0
- package/src/utils/collapse-expanded-outputs.d.ts +1 -0
- package/src/utils/collapse-expanded-outputs.js +40 -0
- package/src/utils/command-line-utils.d.ts +54 -0
- package/src/utils/command-line-utils.js +267 -0
- package/src/utils/consume-messages-from-socket.d.ts +1 -0
- package/src/utils/consume-messages-from-socket.js +21 -0
- package/src/utils/db-connection.d.ts +5 -0
- package/src/utils/db-connection.js +22 -0
- package/src/utils/default-base.d.ts +1 -0
- package/src/utils/default-base.js +17 -0
- package/src/utils/dotenv.d.ts +7 -0
- package/src/utils/dotenv.js +21 -0
- package/src/utils/exit-codes.d.ts +5 -0
- package/src/utils/exit-codes.js +19 -0
- package/src/utils/fileutils.d.ts +75 -0
- package/src/utils/fileutils.js +151 -0
- package/src/utils/find-matching-projects.d.ts +10 -0
- package/src/utils/find-matching-projects.js +210 -0
- package/src/utils/find-workspace-root.d.ts +11 -0
- package/src/utils/find-workspace-root.js +33 -0
- package/src/utils/get-package-name-from-import-path.d.ts +1 -0
- package/src/utils/get-package-name-from-import-path.js +17 -0
- package/src/utils/git-utils.d.ts +41 -0
- package/src/utils/git-utils.index-filter.d.ts +0 -0
- package/src/utils/git-utils.index-filter.js +21 -0
- package/src/utils/git-utils.js +259 -0
- package/src/utils/git-utils.tree-filter.d.ts +11 -0
- package/src/utils/git-utils.tree-filter.js +45 -0
- package/src/utils/globs.d.ts +3 -0
- package/src/utils/globs.js +18 -0
- package/src/utils/handle-errors.d.ts +1 -0
- package/src/utils/handle-errors.js +71 -0
- package/src/utils/ignore.d.ts +8 -0
- package/src/utils/ignore.js +75 -0
- package/src/utils/installation-directory.d.ts +2 -0
- package/src/utils/installation-directory.js +12 -0
- package/src/utils/is-ci.d.ts +1 -0
- package/src/utils/is-ci.js +20 -0
- package/src/utils/json-diff.d.ts +18 -0
- package/src/utils/json-diff.js +112 -0
- package/src/utils/json.d.ts +44 -0
- package/src/utils/json.js +62 -0
- package/src/utils/legacy-task-history.d.ts +8 -0
- package/src/utils/legacy-task-history.js +87 -0
- package/src/utils/logger.d.ts +12 -0
- package/src/utils/logger.js +52 -0
- package/src/utils/nx-cloud-utils.d.ts +3 -0
- package/src/utils/nx-cloud-utils.js +18 -0
- package/src/utils/nx-plugin.deprecated.d.ts +31 -0
- package/src/utils/nx-plugin.deprecated.js +20 -0
- package/src/utils/object-sort.d.ts +1 -0
- package/src/utils/object-sort.js +9 -0
- package/src/utils/output.d.ts +71 -0
- package/src/utils/output.js +240 -0
- package/src/utils/package-json.d.ts +103 -0
- package/src/utils/package-json.js +173 -0
- package/src/utils/package-manager.d.ts +100 -0
- package/src/utils/package-manager.js +404 -0
- package/src/utils/params.d.ts +137 -0
- package/src/utils/params.js +664 -0
- package/src/utils/path.d.ts +19 -0
- package/src/utils/path.js +37 -0
- package/src/utils/perf-logging.d.ts +1 -0
- package/src/utils/perf-logging.js +13 -0
- package/src/utils/plugins/core-plugins.d.ts +6 -0
- package/src/utils/plugins/core-plugins.js +109 -0
- package/src/utils/plugins/index.d.ts +4 -0
- package/src/utils/plugins/index.js +13 -0
- package/src/utils/plugins/installed-plugins.d.ts +5 -0
- package/src/utils/plugins/installed-plugins.js +76 -0
- package/src/utils/plugins/local-plugins.d.ts +4 -0
- package/src/utils/plugins/local-plugins.js +30 -0
- package/src/utils/plugins/output.d.ts +6 -0
- package/src/utils/plugins/output.js +111 -0
- package/src/utils/plugins/plugin-capabilities.d.ts +14 -0
- package/src/utils/plugins/plugin-capabilities.js +77 -0
- package/src/utils/powerpack.d.ts +5 -0
- package/src/utils/powerpack.js +33 -0
- package/src/utils/print-help.d.ts +11 -0
- package/src/utils/print-help.js +264 -0
- package/src/utils/project-graph-utils.d.ts +13 -0
- package/src/utils/project-graph-utils.js +73 -0
- package/src/utils/promised-based-queue.d.ts +6 -0
- package/src/utils/promised-based-queue.js +43 -0
- package/src/utils/serializable-error.d.ts +4 -0
- package/src/utils/serializable-error.js +33 -0
- package/src/utils/serialize-overrides-into-command-line.d.ts +3 -0
- package/src/utils/serialize-overrides-into-command-line.js +42 -0
- package/src/utils/serialize-target.d.ts +1 -0
- package/src/utils/serialize-target.js +6 -0
- package/src/utils/split-target.d.ts +3 -0
- package/src/utils/split-target.js +48 -0
- package/src/utils/strip-indents.d.ts +14 -0
- package/src/utils/strip-indents.js +23 -0
- package/src/utils/sync-generators.d.ts +64 -0
- package/src/utils/sync-generators.js +353 -0
- package/src/utils/task-history.d.ts +17 -0
- package/src/utils/task-history.js +51 -0
- package/src/utils/update-nxw.d.ts +2 -0
- package/src/utils/update-nxw.js +11 -0
- package/src/utils/versions.d.ts +1 -0
- package/src/utils/versions.js +4 -0
- package/src/utils/workspace-configuration-check.d.ts +1 -0
- package/src/utils/workspace-configuration-check.js +36 -0
- package/src/utils/workspace-context.d.ts +19 -0
- package/src/utils/workspace-context.js +103 -0
- package/src/utils/workspace-root.d.ts +6 -0
- package/src/utils/workspace-root.js +39 -0
- package/tasks-runners/default.d.ts +1 -0
- package/tasks-runners/default.js +5 -0
|
@@ -0,0 +1,781 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mergeProjectConfigurationIntoRootMap = mergeProjectConfigurationIntoRootMap;
|
|
4
|
+
exports.mergeMetadata = mergeMetadata;
|
|
5
|
+
exports.createProjectConfigurations = createProjectConfigurations;
|
|
6
|
+
exports.findMatchingConfigFiles = findMatchingConfigFiles;
|
|
7
|
+
exports.readProjectConfigurationsFromRootMap = readProjectConfigurationsFromRootMap;
|
|
8
|
+
exports.validateProject = validateProject;
|
|
9
|
+
exports.mergeTargetDefaultWithTargetDefinition = mergeTargetDefaultWithTargetDefinition;
|
|
10
|
+
exports.mergeTargetConfigurations = mergeTargetConfigurations;
|
|
11
|
+
exports.isCompatibleTarget = isCompatibleTarget;
|
|
12
|
+
exports.resolveNxTokensInOptions = resolveNxTokensInOptions;
|
|
13
|
+
exports.readTargetDefaultsForTarget = readTargetDefaultsForTarget;
|
|
14
|
+
exports.normalizeTarget = normalizeTarget;
|
|
15
|
+
const logger_1 = require("../../utils/logger");
|
|
16
|
+
const fileutils_1 = require("../../utils/fileutils");
|
|
17
|
+
const workspace_root_1 = require("../../utils/workspace-root");
|
|
18
|
+
const minimatch_1 = require("minimatch");
|
|
19
|
+
const path_1 = require("path");
|
|
20
|
+
const perf_hooks_1 = require("perf_hooks");
|
|
21
|
+
const error_types_1 = require("../error-types");
|
|
22
|
+
const globs_1 = require("../../utils/globs");
|
|
23
|
+
function mergeProjectConfigurationIntoRootMap(projectRootMap, project, configurationSourceMaps, sourceInformation,
|
|
24
|
+
// This function is used when reading project configuration
|
|
25
|
+
// in generators, where we don't want to do this.
|
|
26
|
+
skipTargetNormalization) {
|
|
27
|
+
if (configurationSourceMaps && !configurationSourceMaps[project.root]) {
|
|
28
|
+
configurationSourceMaps[project.root] = {};
|
|
29
|
+
}
|
|
30
|
+
const sourceMap = configurationSourceMaps?.[project.root];
|
|
31
|
+
let matchingProject = projectRootMap[project.root];
|
|
32
|
+
if (!matchingProject) {
|
|
33
|
+
projectRootMap[project.root] = {
|
|
34
|
+
root: project.root,
|
|
35
|
+
};
|
|
36
|
+
matchingProject = projectRootMap[project.root];
|
|
37
|
+
if (sourceMap) {
|
|
38
|
+
sourceMap[`root`] = sourceInformation;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
// This handles top level properties that are overwritten.
|
|
42
|
+
// e.g. `srcRoot`, `projectType`, or other fields that shouldn't be extended
|
|
43
|
+
// Note: `name` is set specifically here to keep it from changing. The name is
|
|
44
|
+
// always determined by the first inference plugin to ID a project, unless it has
|
|
45
|
+
// a project.json in which case it was already updated above.
|
|
46
|
+
const updatedProjectConfiguration = {
|
|
47
|
+
...matchingProject,
|
|
48
|
+
};
|
|
49
|
+
for (const k in project) {
|
|
50
|
+
if (![
|
|
51
|
+
'tags',
|
|
52
|
+
'implicitDependencies',
|
|
53
|
+
'generators',
|
|
54
|
+
'targets',
|
|
55
|
+
'metadata',
|
|
56
|
+
'namedInputs',
|
|
57
|
+
].includes(k)) {
|
|
58
|
+
updatedProjectConfiguration[k] = project[k];
|
|
59
|
+
if (sourceMap) {
|
|
60
|
+
sourceMap[`${k}`] = sourceInformation;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
// The next blocks handle properties that should be themselves merged (e.g. targets, tags, and implicit dependencies)
|
|
65
|
+
if (project.tags) {
|
|
66
|
+
updatedProjectConfiguration.tags = Array.from(new Set((matchingProject.tags ?? []).concat(project.tags)));
|
|
67
|
+
if (sourceMap) {
|
|
68
|
+
sourceMap['tags'] ??= sourceInformation;
|
|
69
|
+
project.tags.forEach((tag) => {
|
|
70
|
+
sourceMap[`tags.${tag}`] = sourceInformation;
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
if (project.implicitDependencies) {
|
|
75
|
+
updatedProjectConfiguration.implicitDependencies = (matchingProject.implicitDependencies ?? []).concat(project.implicitDependencies);
|
|
76
|
+
if (sourceMap) {
|
|
77
|
+
sourceMap['implicitDependencies'] ??= sourceInformation;
|
|
78
|
+
project.implicitDependencies.forEach((implicitDependency) => {
|
|
79
|
+
sourceMap[`implicitDependencies.${implicitDependency}`] =
|
|
80
|
+
sourceInformation;
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
if (project.generators) {
|
|
85
|
+
// Start with generators config in new project.
|
|
86
|
+
updatedProjectConfiguration.generators = { ...project.generators };
|
|
87
|
+
if (sourceMap) {
|
|
88
|
+
sourceMap['generators'] ??= sourceInformation;
|
|
89
|
+
for (const generator in project.generators) {
|
|
90
|
+
sourceMap[`generators.${generator}`] = sourceInformation;
|
|
91
|
+
for (const property in project.generators[generator]) {
|
|
92
|
+
sourceMap[`generators.${generator}.${property}`] = sourceInformation;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
if (matchingProject.generators) {
|
|
97
|
+
// For each generator that was already defined, shallow merge the options.
|
|
98
|
+
// Project contains the new info, so it has higher priority.
|
|
99
|
+
for (const generator in matchingProject.generators) {
|
|
100
|
+
updatedProjectConfiguration.generators[generator] = {
|
|
101
|
+
...matchingProject.generators[generator],
|
|
102
|
+
...project.generators[generator],
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
if (project.namedInputs) {
|
|
108
|
+
updatedProjectConfiguration.namedInputs = {
|
|
109
|
+
...matchingProject.namedInputs,
|
|
110
|
+
...project.namedInputs,
|
|
111
|
+
};
|
|
112
|
+
if (sourceMap) {
|
|
113
|
+
sourceMap['namedInputs'] ??= sourceInformation;
|
|
114
|
+
for (const namedInput in project.namedInputs) {
|
|
115
|
+
sourceMap[`namedInputs.${namedInput}`] = sourceInformation;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
if (project.metadata) {
|
|
120
|
+
updatedProjectConfiguration.metadata = mergeMetadata(sourceMap, sourceInformation, 'metadata', project.metadata, matchingProject.metadata);
|
|
121
|
+
}
|
|
122
|
+
if (project.targets) {
|
|
123
|
+
// We merge the targets with special handling, so clear this back to the
|
|
124
|
+
// targets as defined originally before merging.
|
|
125
|
+
updatedProjectConfiguration.targets = matchingProject?.targets ?? {};
|
|
126
|
+
if (sourceMap) {
|
|
127
|
+
sourceMap['targets'] ??= sourceInformation;
|
|
128
|
+
}
|
|
129
|
+
// For each target defined in the new config
|
|
130
|
+
for (const targetName in project.targets) {
|
|
131
|
+
// Always set source map info for the target, but don't overwrite info already there
|
|
132
|
+
// if augmenting an existing target.
|
|
133
|
+
const target = project.targets?.[targetName];
|
|
134
|
+
if (sourceMap) {
|
|
135
|
+
sourceMap[`targets.${targetName}`] = sourceInformation;
|
|
136
|
+
}
|
|
137
|
+
const normalizedTarget = skipTargetNormalization
|
|
138
|
+
? target
|
|
139
|
+
: resolveCommandSyntacticSugar(target, project.root);
|
|
140
|
+
const mergedTarget = mergeTargetConfigurations(normalizedTarget, matchingProject.targets?.[targetName], sourceMap, sourceInformation, `targets.${targetName}`);
|
|
141
|
+
updatedProjectConfiguration.targets[targetName] = mergedTarget;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
projectRootMap[updatedProjectConfiguration.root] =
|
|
145
|
+
updatedProjectConfiguration;
|
|
146
|
+
}
|
|
147
|
+
function mergeMetadata(sourceMap, sourceInformation, baseSourceMapPath, metadata, matchingMetadata) {
|
|
148
|
+
const result = {
|
|
149
|
+
...(matchingMetadata ?? {}),
|
|
150
|
+
};
|
|
151
|
+
for (const [metadataKey, value] of Object.entries(metadata)) {
|
|
152
|
+
const existingValue = matchingMetadata?.[metadataKey];
|
|
153
|
+
if (Array.isArray(value) && Array.isArray(existingValue)) {
|
|
154
|
+
for (const item of [...value]) {
|
|
155
|
+
const newLength = result[metadataKey].push(item);
|
|
156
|
+
if (sourceMap) {
|
|
157
|
+
sourceMap[`${baseSourceMapPath}.${metadataKey}.${newLength - 1}`] =
|
|
158
|
+
sourceInformation;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
else if (Array.isArray(value) && existingValue === undefined) {
|
|
163
|
+
result[metadataKey] ??= value;
|
|
164
|
+
if (sourceMap) {
|
|
165
|
+
sourceMap[`${baseSourceMapPath}.${metadataKey}`] = sourceInformation;
|
|
166
|
+
}
|
|
167
|
+
for (let i = 0; i < value.length; i++) {
|
|
168
|
+
if (sourceMap) {
|
|
169
|
+
sourceMap[`${baseSourceMapPath}.${metadataKey}.${i}`] =
|
|
170
|
+
sourceInformation;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
else if (typeof value === 'object' && typeof existingValue === 'object') {
|
|
175
|
+
for (const key in value) {
|
|
176
|
+
const existingValue = matchingMetadata?.[metadataKey]?.[key];
|
|
177
|
+
if (Array.isArray(value[key]) && Array.isArray(existingValue)) {
|
|
178
|
+
for (const item of value[key]) {
|
|
179
|
+
const i = result[metadataKey][key].push(item);
|
|
180
|
+
if (sourceMap) {
|
|
181
|
+
sourceMap[`${baseSourceMapPath}.${metadataKey}.${key}.${i - 1}`] =
|
|
182
|
+
sourceInformation;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
else {
|
|
187
|
+
result[metadataKey][key] = value[key];
|
|
188
|
+
if (sourceMap) {
|
|
189
|
+
sourceMap[`${baseSourceMapPath}.${metadataKey}`] =
|
|
190
|
+
sourceInformation;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
else {
|
|
196
|
+
result[metadataKey] = value;
|
|
197
|
+
if (sourceMap) {
|
|
198
|
+
sourceMap[`${baseSourceMapPath}.${metadataKey}`] = sourceInformation;
|
|
199
|
+
if (typeof value === 'object') {
|
|
200
|
+
for (const k in value) {
|
|
201
|
+
sourceMap[`${baseSourceMapPath}.${metadataKey}.${k}`] =
|
|
202
|
+
sourceInformation;
|
|
203
|
+
if (Array.isArray(value[k])) {
|
|
204
|
+
for (let i = 0; i < value[k].length; i++) {
|
|
205
|
+
sourceMap[`${baseSourceMapPath}.${metadataKey}.${k}.${i}`] =
|
|
206
|
+
sourceInformation;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
return result;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Transforms a list of project paths into a map of project configurations.
|
|
218
|
+
*
|
|
219
|
+
* @param root The workspace root
|
|
220
|
+
* @param nxJson The NxJson configuration
|
|
221
|
+
* @param workspaceFiles A list of non-ignored workspace files
|
|
222
|
+
* @param plugins The plugins that should be used to infer project configuration
|
|
223
|
+
*/
|
|
224
|
+
async function createProjectConfigurations(root = workspace_root_1.workspaceRoot, nxJson, projectFiles, // making this parameter allows devkit to pick up newly created projects
|
|
225
|
+
plugins) {
|
|
226
|
+
perf_hooks_1.performance.mark('build-project-configs:start');
|
|
227
|
+
const results = [];
|
|
228
|
+
const errors = [];
|
|
229
|
+
// We iterate over plugins first - this ensures that plugins specified first take precedence.
|
|
230
|
+
for (const { createNodes: createNodesTuple, include, exclude, name: pluginName, } of plugins) {
|
|
231
|
+
const [pattern, createNodes] = createNodesTuple ?? [];
|
|
232
|
+
if (!pattern) {
|
|
233
|
+
continue;
|
|
234
|
+
}
|
|
235
|
+
const matchingConfigFiles = findMatchingConfigFiles(projectFiles, pattern, include, exclude);
|
|
236
|
+
let r = createNodes(matchingConfigFiles, {
|
|
237
|
+
nxJsonConfiguration: nxJson,
|
|
238
|
+
workspaceRoot: root,
|
|
239
|
+
}).catch((e) => {
|
|
240
|
+
const errorBodyLines = [
|
|
241
|
+
`An error occurred while processing files for the ${pluginName} plugin.`,
|
|
242
|
+
];
|
|
243
|
+
const error = (0, error_types_1.isAggregateCreateNodesError)(e)
|
|
244
|
+
? // This is an expected error if something goes wrong while processing files.
|
|
245
|
+
e
|
|
246
|
+
: // This represents a single plugin erroring out with a hard error.
|
|
247
|
+
new error_types_1.AggregateCreateNodesError([[null, e]], []);
|
|
248
|
+
const innerErrors = error.errors;
|
|
249
|
+
for (const [file, e] of innerErrors) {
|
|
250
|
+
if (file) {
|
|
251
|
+
errorBodyLines.push(` - ${file}: ${e.message}`);
|
|
252
|
+
}
|
|
253
|
+
else {
|
|
254
|
+
errorBodyLines.push(` - ${e.message}`);
|
|
255
|
+
}
|
|
256
|
+
const innerStackTrace = ' ' + e.stack.split('\n').join('\n ');
|
|
257
|
+
errorBodyLines.push(innerStackTrace);
|
|
258
|
+
}
|
|
259
|
+
error.stack = errorBodyLines.join('\n');
|
|
260
|
+
// This represents a single plugin erroring out with a hard error.
|
|
261
|
+
errors.push(error);
|
|
262
|
+
// The plugin didn't return partial results, so we return an empty array.
|
|
263
|
+
return error.partialResults.map((r) => [pluginName, r[0], r[1]]);
|
|
264
|
+
});
|
|
265
|
+
results.push(r);
|
|
266
|
+
}
|
|
267
|
+
return Promise.all(results).then((results) => {
|
|
268
|
+
const { projectRootMap, externalNodes, rootMap, configurationSourceMaps } = mergeCreateNodesResults(results, nxJson, errors);
|
|
269
|
+
perf_hooks_1.performance.mark('build-project-configs:end');
|
|
270
|
+
perf_hooks_1.performance.measure('build-project-configs', 'build-project-configs:start', 'build-project-configs:end');
|
|
271
|
+
if (errors.length === 0) {
|
|
272
|
+
return {
|
|
273
|
+
projects: projectRootMap,
|
|
274
|
+
externalNodes,
|
|
275
|
+
projectRootMap: rootMap,
|
|
276
|
+
sourceMaps: configurationSourceMaps,
|
|
277
|
+
matchingProjectFiles: projectFiles,
|
|
278
|
+
};
|
|
279
|
+
}
|
|
280
|
+
else {
|
|
281
|
+
throw new error_types_1.ProjectConfigurationsError(errors, {
|
|
282
|
+
projects: projectRootMap,
|
|
283
|
+
externalNodes,
|
|
284
|
+
projectRootMap: rootMap,
|
|
285
|
+
sourceMaps: configurationSourceMaps,
|
|
286
|
+
matchingProjectFiles: projectFiles,
|
|
287
|
+
});
|
|
288
|
+
}
|
|
289
|
+
});
|
|
290
|
+
}
|
|
291
|
+
function mergeCreateNodesResults(results, nxJsonConfiguration, errors) {
|
|
292
|
+
perf_hooks_1.performance.mark('createNodes:merge - start');
|
|
293
|
+
const projectRootMap = {};
|
|
294
|
+
const externalNodes = {};
|
|
295
|
+
const configurationSourceMaps = {};
|
|
296
|
+
for (const result of results.flat()) {
|
|
297
|
+
const [pluginName, file, nodes] = result;
|
|
298
|
+
const { projects: projectNodes, externalNodes: pluginExternalNodes } = nodes;
|
|
299
|
+
const sourceInfo = [file, pluginName];
|
|
300
|
+
for (const node in projectNodes) {
|
|
301
|
+
// Handles `{projects: {'libs/foo': undefined}}`.
|
|
302
|
+
if (!projectNodes[node]) {
|
|
303
|
+
continue;
|
|
304
|
+
}
|
|
305
|
+
const project = {
|
|
306
|
+
root: node,
|
|
307
|
+
...projectNodes[node],
|
|
308
|
+
};
|
|
309
|
+
try {
|
|
310
|
+
mergeProjectConfigurationIntoRootMap(projectRootMap, project, configurationSourceMaps, sourceInfo);
|
|
311
|
+
}
|
|
312
|
+
catch (error) {
|
|
313
|
+
errors.push(new error_types_1.MergeNodesError({
|
|
314
|
+
file,
|
|
315
|
+
pluginName,
|
|
316
|
+
error,
|
|
317
|
+
}));
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
Object.assign(externalNodes, pluginExternalNodes);
|
|
321
|
+
}
|
|
322
|
+
try {
|
|
323
|
+
validateAndNormalizeProjectRootMap(projectRootMap, nxJsonConfiguration, configurationSourceMaps);
|
|
324
|
+
}
|
|
325
|
+
catch (e) {
|
|
326
|
+
if ((0, error_types_1.isProjectsWithNoNameError)(e) ||
|
|
327
|
+
(0, error_types_1.isMultipleProjectsWithSameNameError)(e)) {
|
|
328
|
+
errors.push(e);
|
|
329
|
+
}
|
|
330
|
+
else {
|
|
331
|
+
throw e;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
const rootMap = createRootMap(projectRootMap);
|
|
335
|
+
perf_hooks_1.performance.mark('createNodes:merge - end');
|
|
336
|
+
perf_hooks_1.performance.measure('createNodes:merge', 'createNodes:merge - start', 'createNodes:merge - end');
|
|
337
|
+
return { projectRootMap, externalNodes, rootMap, configurationSourceMaps };
|
|
338
|
+
}
|
|
339
|
+
function findMatchingConfigFiles(projectFiles, pattern, include, exclude) {
|
|
340
|
+
const matchingConfigFiles = [];
|
|
341
|
+
for (const file of projectFiles) {
|
|
342
|
+
if ((0, minimatch_1.minimatch)(file, pattern, { dot: true })) {
|
|
343
|
+
if (include) {
|
|
344
|
+
const included = include.some((includedPattern) => (0, minimatch_1.minimatch)(file, includedPattern, { dot: true }));
|
|
345
|
+
if (!included) {
|
|
346
|
+
continue;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
if (exclude) {
|
|
350
|
+
const excluded = exclude.some((excludedPattern) => (0, minimatch_1.minimatch)(file, excludedPattern, { dot: true }));
|
|
351
|
+
if (excluded) {
|
|
352
|
+
continue;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
matchingConfigFiles.push(file);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
return matchingConfigFiles;
|
|
359
|
+
}
|
|
360
|
+
function readProjectConfigurationsFromRootMap(projectRootMap) {
|
|
361
|
+
const projects = {};
|
|
362
|
+
// If there are projects that have the same name, that is an error.
|
|
363
|
+
// This object tracks name -> (all roots of projects with that name)
|
|
364
|
+
// to provide better error messaging.
|
|
365
|
+
const conflicts = new Map();
|
|
366
|
+
const projectRootsWithNoName = [];
|
|
367
|
+
for (const root in projectRootMap) {
|
|
368
|
+
const project = projectRootMap[root];
|
|
369
|
+
// We're setting `// targets` as a comment `targets` is empty due to Project Crystal.
|
|
370
|
+
// Strip it before returning configuration for usage.
|
|
371
|
+
if (project['// targets'])
|
|
372
|
+
delete project['// targets'];
|
|
373
|
+
try {
|
|
374
|
+
validateProject(project, projects);
|
|
375
|
+
projects[project.name] = project;
|
|
376
|
+
}
|
|
377
|
+
catch (e) {
|
|
378
|
+
if ((0, error_types_1.isProjectWithNoNameError)(e)) {
|
|
379
|
+
projectRootsWithNoName.push(e.projectRoot);
|
|
380
|
+
}
|
|
381
|
+
else if ((0, error_types_1.isProjectWithExistingNameError)(e)) {
|
|
382
|
+
const rootErrors = conflicts.get(e.projectName) ?? [
|
|
383
|
+
projects[e.projectName].root,
|
|
384
|
+
];
|
|
385
|
+
rootErrors.push(e.projectRoot);
|
|
386
|
+
conflicts.set(e.projectName, rootErrors);
|
|
387
|
+
}
|
|
388
|
+
else {
|
|
389
|
+
throw e;
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
if (conflicts.size > 0) {
|
|
394
|
+
throw new error_types_1.MultipleProjectsWithSameNameError(conflicts, projects);
|
|
395
|
+
}
|
|
396
|
+
if (projectRootsWithNoName.length > 0) {
|
|
397
|
+
throw new error_types_1.ProjectsWithNoNameError(projectRootsWithNoName, projects);
|
|
398
|
+
}
|
|
399
|
+
return projects;
|
|
400
|
+
}
|
|
401
|
+
function validateAndNormalizeProjectRootMap(projectRootMap, nxJsonConfiguration, sourceMaps = {}) {
|
|
402
|
+
// Name -> Project, used to validate that all projects have unique names
|
|
403
|
+
const projects = {};
|
|
404
|
+
// If there are projects that have the same name, that is an error.
|
|
405
|
+
// This object tracks name -> (all roots of projects with that name)
|
|
406
|
+
// to provide better error messaging.
|
|
407
|
+
const conflicts = new Map();
|
|
408
|
+
const projectRootsWithNoName = [];
|
|
409
|
+
for (const root in projectRootMap) {
|
|
410
|
+
const project = projectRootMap[root];
|
|
411
|
+
// We're setting `// targets` as a comment `targets` is empty due to Project Crystal.
|
|
412
|
+
// Strip it before returning configuration for usage.
|
|
413
|
+
if (project['// targets'])
|
|
414
|
+
delete project['// targets'];
|
|
415
|
+
try {
|
|
416
|
+
validateProject(project, projects);
|
|
417
|
+
projects[project.name] = project;
|
|
418
|
+
}
|
|
419
|
+
catch (e) {
|
|
420
|
+
if ((0, error_types_1.isProjectWithNoNameError)(e)) {
|
|
421
|
+
projectRootsWithNoName.push(e.projectRoot);
|
|
422
|
+
}
|
|
423
|
+
else if ((0, error_types_1.isProjectWithExistingNameError)(e)) {
|
|
424
|
+
const rootErrors = conflicts.get(e.projectName) ?? [
|
|
425
|
+
projects[e.projectName].root,
|
|
426
|
+
];
|
|
427
|
+
rootErrors.push(e.projectRoot);
|
|
428
|
+
conflicts.set(e.projectName, rootErrors);
|
|
429
|
+
}
|
|
430
|
+
else {
|
|
431
|
+
throw e;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
normalizeTargets(project, sourceMaps, nxJsonConfiguration);
|
|
435
|
+
}
|
|
436
|
+
if (conflicts.size > 0) {
|
|
437
|
+
throw new error_types_1.MultipleProjectsWithSameNameError(conflicts, projects);
|
|
438
|
+
}
|
|
439
|
+
if (projectRootsWithNoName.length > 0) {
|
|
440
|
+
throw new error_types_1.ProjectsWithNoNameError(projectRootsWithNoName, projects);
|
|
441
|
+
}
|
|
442
|
+
return projectRootMap;
|
|
443
|
+
}
|
|
444
|
+
function normalizeTargets(project, sourceMaps, nxJsonConfiguration) {
|
|
445
|
+
for (const targetName in project.targets) {
|
|
446
|
+
project.targets[targetName] = normalizeTarget(project.targets[targetName], project);
|
|
447
|
+
const projectSourceMaps = sourceMaps[project.root];
|
|
448
|
+
const targetConfig = project.targets[targetName];
|
|
449
|
+
const targetDefaults = deepClone(readTargetDefaultsForTarget(targetName, nxJsonConfiguration.targetDefaults, targetConfig.executor));
|
|
450
|
+
// We only apply defaults if they exist
|
|
451
|
+
if (targetDefaults && isCompatibleTarget(targetConfig, targetDefaults)) {
|
|
452
|
+
project.targets[targetName] = mergeTargetDefaultWithTargetDefinition(targetName, project, normalizeTarget(targetDefaults, project), projectSourceMaps);
|
|
453
|
+
}
|
|
454
|
+
if (
|
|
455
|
+
// If the target has no executor or command, it doesn't do anything
|
|
456
|
+
!project.targets[targetName].executor &&
|
|
457
|
+
!project.targets[targetName].command) {
|
|
458
|
+
// But it may have dependencies that do something
|
|
459
|
+
if (project.targets[targetName].dependsOn &&
|
|
460
|
+
project.targets[targetName].dependsOn.length > 0) {
|
|
461
|
+
project.targets[targetName].executor = 'nx:noop';
|
|
462
|
+
}
|
|
463
|
+
else {
|
|
464
|
+
// If it does nothing, and has no depenencies,
|
|
465
|
+
// we can remove it.
|
|
466
|
+
delete project.targets[targetName];
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
function validateProject(project,
|
|
472
|
+
// name -> project
|
|
473
|
+
knownProjects) {
|
|
474
|
+
if (!project.name) {
|
|
475
|
+
try {
|
|
476
|
+
const { name } = (0, fileutils_1.readJsonFile)((0, path_1.join)(project.root, 'package.json'));
|
|
477
|
+
if (!name) {
|
|
478
|
+
throw new Error(`Project at ${project.root} has no name provided.`);
|
|
479
|
+
}
|
|
480
|
+
project.name = name;
|
|
481
|
+
}
|
|
482
|
+
catch {
|
|
483
|
+
throw new error_types_1.ProjectWithNoNameError(project.root);
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
else if (knownProjects[project.name] &&
|
|
487
|
+
knownProjects[project.name].root !== project.root) {
|
|
488
|
+
throw new error_types_1.ProjectWithExistingNameError(project.name, project.root);
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
function targetDefaultShouldBeApplied(key, sourceMap) {
|
|
492
|
+
const sourceInfo = sourceMap[key];
|
|
493
|
+
if (!sourceInfo) {
|
|
494
|
+
return true;
|
|
495
|
+
}
|
|
496
|
+
// The defined value of the target is from a plugin that
|
|
497
|
+
// isn't part of Nx's core plugins, so target defaults are
|
|
498
|
+
// applied on top of it.
|
|
499
|
+
const [, plugin] = sourceInfo;
|
|
500
|
+
return !plugin?.startsWith('nx/');
|
|
501
|
+
}
|
|
502
|
+
function deepClone(obj) {
|
|
503
|
+
return JSON.parse(JSON.stringify(obj));
|
|
504
|
+
}
|
|
505
|
+
function mergeTargetDefaultWithTargetDefinition(targetName, project, targetDefault, sourceMap) {
|
|
506
|
+
const targetDefinition = project.targets[targetName] ?? {};
|
|
507
|
+
const result = deepClone(targetDefinition);
|
|
508
|
+
for (const key in targetDefault) {
|
|
509
|
+
switch (key) {
|
|
510
|
+
case 'options': {
|
|
511
|
+
const normalizedDefaults = resolveNxTokensInOptions(targetDefault.options, project, targetName);
|
|
512
|
+
for (const optionKey in normalizedDefaults) {
|
|
513
|
+
const sourceMapKey = `targets.${targetName}.options.${optionKey}`;
|
|
514
|
+
if (targetDefinition.options[optionKey] === undefined ||
|
|
515
|
+
targetDefaultShouldBeApplied(sourceMapKey, sourceMap)) {
|
|
516
|
+
result.options[optionKey] = targetDefault.options[optionKey];
|
|
517
|
+
sourceMap[sourceMapKey] = ['nx.json', 'nx/target-defaults'];
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
break;
|
|
521
|
+
}
|
|
522
|
+
case 'configurations': {
|
|
523
|
+
if (!result.configurations) {
|
|
524
|
+
result.configurations = {};
|
|
525
|
+
sourceMap[`targets.${targetName}.configurations`] = [
|
|
526
|
+
'nx.json',
|
|
527
|
+
'nx/target-defaults',
|
|
528
|
+
];
|
|
529
|
+
}
|
|
530
|
+
for (const configuration in targetDefault.configurations) {
|
|
531
|
+
if (!result.configurations[configuration]) {
|
|
532
|
+
result.configurations[configuration] = {};
|
|
533
|
+
sourceMap[`targets.${targetName}.configurations.${configuration}`] =
|
|
534
|
+
['nx.json', 'nx/target-defaults'];
|
|
535
|
+
}
|
|
536
|
+
const normalizedConfigurationDefaults = resolveNxTokensInOptions(targetDefault.configurations[configuration], project, targetName);
|
|
537
|
+
for (const configurationKey in normalizedConfigurationDefaults) {
|
|
538
|
+
const sourceMapKey = `targets.${targetName}.configurations.${configuration}.${configurationKey}`;
|
|
539
|
+
if (targetDefinition.configurations?.[configuration]?.[configurationKey] === undefined ||
|
|
540
|
+
targetDefaultShouldBeApplied(sourceMapKey, sourceMap)) {
|
|
541
|
+
result.configurations[configuration][configurationKey] =
|
|
542
|
+
targetDefault.configurations[configuration][configurationKey];
|
|
543
|
+
sourceMap[sourceMapKey] = ['nx.json', 'nx/target-defaults'];
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
break;
|
|
548
|
+
}
|
|
549
|
+
default: {
|
|
550
|
+
const sourceMapKey = `targets.${targetName}.${key}`;
|
|
551
|
+
if (targetDefinition[key] === undefined ||
|
|
552
|
+
targetDefaultShouldBeApplied(sourceMapKey, sourceMap)) {
|
|
553
|
+
result[key] = targetDefault[key];
|
|
554
|
+
sourceMap[sourceMapKey] = ['nx.json', 'nx/target-defaults'];
|
|
555
|
+
}
|
|
556
|
+
break;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
return result;
|
|
561
|
+
}
|
|
562
|
+
/**
|
|
563
|
+
* Merges two targets.
|
|
564
|
+
*
|
|
565
|
+
* Most properties from `target` will overwrite any properties from `baseTarget`.
|
|
566
|
+
* Options and configurations are treated differently - they are merged together if the executor definition is compatible.
|
|
567
|
+
*
|
|
568
|
+
* @param target The target definition with higher priority
|
|
569
|
+
* @param baseTarget The target definition that should be overwritten. Can be undefined, in which case the target is returned as-is.
|
|
570
|
+
* @param projectConfigSourceMap The source map to be filled with metadata about where each property came from
|
|
571
|
+
* @param sourceInformation The metadata about where the new target was defined
|
|
572
|
+
* @param targetIdentifier The identifier for the target to merge, used for source map
|
|
573
|
+
* @returns A merged target configuration
|
|
574
|
+
*/
|
|
575
|
+
function mergeTargetConfigurations(target, baseTarget, projectConfigSourceMap, sourceInformation, targetIdentifier) {
|
|
576
|
+
const { configurations: defaultConfigurations, options: defaultOptions, ...baseTargetProperties } = baseTarget ?? {};
|
|
577
|
+
// Target is "compatible", e.g. executor is defined only once or is the same
|
|
578
|
+
// in both places. This means that it is likely safe to merge
|
|
579
|
+
const isCompatible = isCompatibleTarget(baseTarget ?? {}, target);
|
|
580
|
+
if (!isCompatible && projectConfigSourceMap) {
|
|
581
|
+
// if the target is not compatible, we will simply override the options
|
|
582
|
+
// we have to delete old entries from the source map
|
|
583
|
+
for (const key in projectConfigSourceMap) {
|
|
584
|
+
if (key.startsWith(`${targetIdentifier}`)) {
|
|
585
|
+
delete projectConfigSourceMap[key];
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
// merge top level properties if they're compatible
|
|
590
|
+
const result = {
|
|
591
|
+
...(isCompatible ? baseTargetProperties : {}),
|
|
592
|
+
...target,
|
|
593
|
+
};
|
|
594
|
+
// record top level properties in source map
|
|
595
|
+
if (projectConfigSourceMap) {
|
|
596
|
+
projectConfigSourceMap[targetIdentifier] = sourceInformation;
|
|
597
|
+
// record root level target properties to source map
|
|
598
|
+
for (const targetProperty in target) {
|
|
599
|
+
const targetPropertyId = `${targetIdentifier}.${targetProperty}`;
|
|
600
|
+
projectConfigSourceMap[targetPropertyId] = sourceInformation;
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
// merge options if there are any
|
|
604
|
+
// if the targets aren't compatible, we simply discard the old options during the merge
|
|
605
|
+
if (target.options || defaultOptions) {
|
|
606
|
+
result.options = mergeOptions(target.options, isCompatible ? defaultOptions : undefined, projectConfigSourceMap, sourceInformation, targetIdentifier);
|
|
607
|
+
}
|
|
608
|
+
// merge configurations if there are any
|
|
609
|
+
// if the targets aren't compatible, we simply discard the old configurations during the merge
|
|
610
|
+
if (target.configurations || defaultConfigurations) {
|
|
611
|
+
result.configurations = mergeConfigurations(target.configurations, isCompatible ? defaultConfigurations : undefined, projectConfigSourceMap, sourceInformation, targetIdentifier);
|
|
612
|
+
}
|
|
613
|
+
if (target.metadata) {
|
|
614
|
+
result.metadata = mergeMetadata(projectConfigSourceMap, sourceInformation, `${targetIdentifier}.metadata`, target.metadata, baseTarget?.metadata);
|
|
615
|
+
}
|
|
616
|
+
return result;
|
|
617
|
+
}
|
|
618
|
+
/**
|
|
619
|
+
* Checks if targets options are compatible - used when merging configurations
|
|
620
|
+
* to avoid merging options for @nx/js:tsc into something like @nx/webpack:webpack.
|
|
621
|
+
*
|
|
622
|
+
* If the executors are both specified and don't match, the options aren't considered
|
|
623
|
+
* "compatible" and shouldn't be merged.
|
|
624
|
+
*/
|
|
625
|
+
function isCompatibleTarget(a, b) {
|
|
626
|
+
const oneHasNoExecutor = !a.executor || !b.executor;
|
|
627
|
+
const bothHaveSameExecutor = a.executor === b.executor;
|
|
628
|
+
if (oneHasNoExecutor)
|
|
629
|
+
return true;
|
|
630
|
+
if (!bothHaveSameExecutor)
|
|
631
|
+
return false;
|
|
632
|
+
const isRunCommands = a.executor === 'nx:run-commands';
|
|
633
|
+
if (isRunCommands) {
|
|
634
|
+
const aCommand = a.options?.command ?? a.options?.commands?.join(' && ');
|
|
635
|
+
const bCommand = b.options?.command ?? b.options?.commands?.join(' && ');
|
|
636
|
+
const oneHasNoCommand = !aCommand || !bCommand;
|
|
637
|
+
const hasSameCommand = aCommand === bCommand;
|
|
638
|
+
return oneHasNoCommand || hasSameCommand;
|
|
639
|
+
}
|
|
640
|
+
const isRunScript = a.executor === 'nx:run-script';
|
|
641
|
+
if (isRunScript) {
|
|
642
|
+
const aScript = a.options?.script;
|
|
643
|
+
const bScript = b.options?.script;
|
|
644
|
+
const oneHasNoScript = !aScript || !bScript;
|
|
645
|
+
const hasSameScript = aScript === bScript;
|
|
646
|
+
return oneHasNoScript || hasSameScript;
|
|
647
|
+
}
|
|
648
|
+
return true;
|
|
649
|
+
}
|
|
650
|
+
function mergeConfigurations(newConfigurations, baseConfigurations, projectConfigSourceMap, sourceInformation, targetIdentifier) {
|
|
651
|
+
const mergedConfigurations = {};
|
|
652
|
+
const configurations = new Set([
|
|
653
|
+
...Object.keys(baseConfigurations ?? {}),
|
|
654
|
+
...Object.keys(newConfigurations ?? {}),
|
|
655
|
+
]);
|
|
656
|
+
for (const configuration of configurations) {
|
|
657
|
+
mergedConfigurations[configuration] = {
|
|
658
|
+
...(baseConfigurations?.[configuration] ?? {}),
|
|
659
|
+
...(newConfigurations?.[configuration] ?? {}),
|
|
660
|
+
};
|
|
661
|
+
}
|
|
662
|
+
// record new configurations & configuration properties in source map
|
|
663
|
+
if (projectConfigSourceMap) {
|
|
664
|
+
for (const newConfiguration in newConfigurations) {
|
|
665
|
+
projectConfigSourceMap[`${targetIdentifier}.configurations.${newConfiguration}`] = sourceInformation;
|
|
666
|
+
for (const configurationProperty in newConfigurations[newConfiguration]) {
|
|
667
|
+
projectConfigSourceMap[`${targetIdentifier}.configurations.${newConfiguration}.${configurationProperty}`] = sourceInformation;
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
return mergedConfigurations;
|
|
672
|
+
}
|
|
673
|
+
function mergeOptions(newOptions, baseOptions, projectConfigSourceMap, sourceInformation, targetIdentifier) {
|
|
674
|
+
const mergedOptions = {
|
|
675
|
+
...(baseOptions ?? {}),
|
|
676
|
+
...(newOptions ?? {}),
|
|
677
|
+
};
|
|
678
|
+
// record new options & option properties in source map
|
|
679
|
+
if (projectConfigSourceMap) {
|
|
680
|
+
for (const newOption in newOptions) {
|
|
681
|
+
projectConfigSourceMap[`${targetIdentifier}.options.${newOption}`] =
|
|
682
|
+
sourceInformation;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
return mergedOptions;
|
|
686
|
+
}
|
|
687
|
+
function resolveNxTokensInOptions(object, project, key) {
|
|
688
|
+
const result = Array.isArray(object) ? [...object] : { ...object };
|
|
689
|
+
for (let [opt, value] of Object.entries(object ?? {})) {
|
|
690
|
+
if (typeof value === 'string') {
|
|
691
|
+
const workspaceRootMatch = /^(\{workspaceRoot\}\/?)/.exec(value);
|
|
692
|
+
if (workspaceRootMatch?.length) {
|
|
693
|
+
value = value.replace(workspaceRootMatch[0], '');
|
|
694
|
+
}
|
|
695
|
+
if (value.includes('{workspaceRoot}')) {
|
|
696
|
+
throw new Error(`${logger_1.NX_PREFIX} The {workspaceRoot} token is only valid at the beginning of an option. (${key})`);
|
|
697
|
+
}
|
|
698
|
+
value = value.replace(/\{projectRoot\}/g, project.root);
|
|
699
|
+
result[opt] = value.replace(/\{projectName\}/g, project.name);
|
|
700
|
+
}
|
|
701
|
+
else if (typeof value === 'object' && value) {
|
|
702
|
+
result[opt] = resolveNxTokensInOptions(value, project, [key, opt].join('.'));
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
return result;
|
|
706
|
+
}
|
|
707
|
+
function readTargetDefaultsForTarget(targetName, targetDefaults, executor) {
|
|
708
|
+
if (executor && targetDefaults?.[executor]) {
|
|
709
|
+
// If an executor is defined in project.json, defaults should be read
|
|
710
|
+
// from the most specific key that matches that executor.
|
|
711
|
+
// e.g. If executor === run-commands, and the target is named build:
|
|
712
|
+
// Use, use nx:run-commands if it is present
|
|
713
|
+
// If not, use build if it is present.
|
|
714
|
+
return targetDefaults?.[executor];
|
|
715
|
+
}
|
|
716
|
+
else if (targetDefaults?.[targetName]) {
|
|
717
|
+
// If the executor is not defined, the only key we have is the target name.
|
|
718
|
+
return targetDefaults?.[targetName];
|
|
719
|
+
}
|
|
720
|
+
let matchingTargetDefaultKey = null;
|
|
721
|
+
for (const key in targetDefaults ?? {}) {
|
|
722
|
+
if ((0, globs_1.isGlobPattern)(key) && (0, minimatch_1.minimatch)(targetName, key)) {
|
|
723
|
+
if (!matchingTargetDefaultKey ||
|
|
724
|
+
matchingTargetDefaultKey.length < key.length) {
|
|
725
|
+
matchingTargetDefaultKey = key;
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
if (matchingTargetDefaultKey) {
|
|
730
|
+
return targetDefaults[matchingTargetDefaultKey];
|
|
731
|
+
}
|
|
732
|
+
return null;
|
|
733
|
+
}
|
|
734
|
+
function createRootMap(projectRootMap) {
|
|
735
|
+
const map = {};
|
|
736
|
+
for (const projectRoot in projectRootMap) {
|
|
737
|
+
const projectName = projectRootMap[projectRoot].name;
|
|
738
|
+
map[projectRoot] = projectName;
|
|
739
|
+
}
|
|
740
|
+
return map;
|
|
741
|
+
}
|
|
742
|
+
function resolveCommandSyntacticSugar(target, key) {
|
|
743
|
+
const { command, ...config } = target ?? {};
|
|
744
|
+
if (!command) {
|
|
745
|
+
return target;
|
|
746
|
+
}
|
|
747
|
+
if (config.executor) {
|
|
748
|
+
throw new Error(`${logger_1.NX_PREFIX} Project at ${key} should not have executor and command both configured.`);
|
|
749
|
+
}
|
|
750
|
+
else {
|
|
751
|
+
return {
|
|
752
|
+
...config,
|
|
753
|
+
executor: 'nx:run-commands',
|
|
754
|
+
options: {
|
|
755
|
+
...config.options,
|
|
756
|
+
command: command,
|
|
757
|
+
},
|
|
758
|
+
};
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
/**
|
|
762
|
+
* Expand's `command` syntactic sugar and replaces tokens in options.
|
|
763
|
+
* @param target The target to normalize
|
|
764
|
+
* @param project The project that the target belongs to
|
|
765
|
+
* @returns The normalized target configuration
|
|
766
|
+
*/
|
|
767
|
+
function normalizeTarget(target, project) {
|
|
768
|
+
target = {
|
|
769
|
+
...target,
|
|
770
|
+
configurations: {
|
|
771
|
+
...target.configurations,
|
|
772
|
+
},
|
|
773
|
+
};
|
|
774
|
+
target = resolveCommandSyntacticSugar(target, project.root);
|
|
775
|
+
target.options = resolveNxTokensInOptions(target.options, project, `${project.root}:${target}`);
|
|
776
|
+
for (const configuration in target.configurations) {
|
|
777
|
+
target.configurations[configuration] = resolveNxTokensInOptions(target.configurations[configuration], project, `${project.root}:${target}:${configuration}`);
|
|
778
|
+
}
|
|
779
|
+
target.parallelism ??= true;
|
|
780
|
+
return target;
|
|
781
|
+
}
|