@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,854 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getLogger = exports.NxScopeHostUsedForWrappedSchematics = exports.NxScopedHostForBuilders = exports.NxScopedHost = void 0;
|
|
4
|
+
exports.createBuilderContext = createBuilderContext;
|
|
5
|
+
exports.scheduleTarget = scheduleTarget;
|
|
6
|
+
exports.arrayBufferToString = arrayBufferToString;
|
|
7
|
+
exports.generate = generate;
|
|
8
|
+
exports.runMigration = runMigration;
|
|
9
|
+
exports.mockSchematicsForTesting = mockSchematicsForTesting;
|
|
10
|
+
exports.wrapAngularDevkitSchematic = wrapAngularDevkitSchematic;
|
|
11
|
+
const core_1 = require("@angular-devkit/core");
|
|
12
|
+
const node_1 = require("@angular-devkit/core/node");
|
|
13
|
+
const chalk = require("chalk");
|
|
14
|
+
const path_1 = require("path");
|
|
15
|
+
const rxjs_1 = require("rxjs");
|
|
16
|
+
const operators_1 = require("rxjs/operators");
|
|
17
|
+
const tree_1 = require("../generators/tree");
|
|
18
|
+
const json_1 = require("../generators/utils/json");
|
|
19
|
+
const project_configuration_1 = require("../generators/utils/project-configuration");
|
|
20
|
+
const project_graph_1 = require("../project-graph/project-graph");
|
|
21
|
+
const fileutils_1 = require("../utils/fileutils");
|
|
22
|
+
const installation_directory_1 = require("../utils/installation-directory");
|
|
23
|
+
const json_2 = require("../utils/json");
|
|
24
|
+
const logger_1 = require("../utils/logger");
|
|
25
|
+
const package_json_1 = require("../utils/package-json");
|
|
26
|
+
const package_manager_1 = require("../utils/package-manager");
|
|
27
|
+
const angular_json_1 = require("./angular-json");
|
|
28
|
+
const executor_utils_1 = require("../command-line/run/executor-utils");
|
|
29
|
+
const plugins_1 = require("../project-graph/plugins");
|
|
30
|
+
const schema_utils_1 = require("../config/schema-utils");
|
|
31
|
+
async function createBuilderContext(builderInfo, context) {
|
|
32
|
+
require('./compat');
|
|
33
|
+
const fsHost = new NxScopedHostForBuilders(context.root);
|
|
34
|
+
// the top level import is not patched because it is imported before the
|
|
35
|
+
// patching happens so we require it here to use the patched version below
|
|
36
|
+
const { workspaces } = require('@angular-devkit/core');
|
|
37
|
+
const { workspace } = await workspaces.readWorkspace('angular.json', workspaces.createWorkspaceHost(fsHost));
|
|
38
|
+
const architectHost = await getWrappedWorkspaceNodeModulesArchitectHost(workspace, context.root, context.projectsConfigurations.projects);
|
|
39
|
+
const registry = new core_1.schema.CoreSchemaRegistry();
|
|
40
|
+
registry.addPostTransform(core_1.schema.transforms.addUndefinedDefaults);
|
|
41
|
+
registry.addSmartDefaultProvider('unparsed', () => {
|
|
42
|
+
// This happens when context.scheduleTarget is used to run a target using nx:run-commands
|
|
43
|
+
return [];
|
|
44
|
+
});
|
|
45
|
+
const { Architect } = require('@angular-devkit/architect');
|
|
46
|
+
const architect = new Architect(architectHost, registry);
|
|
47
|
+
const { firstValueFrom } = require('rxjs');
|
|
48
|
+
const toPromise = (obs) => firstValueFrom ? firstValueFrom(obs) : obs.toPromise();
|
|
49
|
+
const validateOptions = (options, builderName) => toPromise(architect['_scheduler'].schedule('..validateOptions', [
|
|
50
|
+
builderName,
|
|
51
|
+
options,
|
|
52
|
+
]).output);
|
|
53
|
+
const getProjectMetadata = (target) => toPromise(architect['_scheduler'].schedule('..getProjectMetadata', target).output);
|
|
54
|
+
const getBuilderNameForTarget = (target) => {
|
|
55
|
+
if (typeof target === 'string') {
|
|
56
|
+
return Promise.resolve(context.projectGraph.nodes[context.projectName].data.targets[target]
|
|
57
|
+
.executor);
|
|
58
|
+
}
|
|
59
|
+
return Promise.resolve(context.projectGraph.nodes[target.project].data.targets[target.target]
|
|
60
|
+
.executor);
|
|
61
|
+
};
|
|
62
|
+
const getTargetOptions = (target) => {
|
|
63
|
+
if (typeof target === 'string') {
|
|
64
|
+
return Promise.resolve({
|
|
65
|
+
...context.projectGraph.nodes[context.projectName].data.targets[target]
|
|
66
|
+
.options,
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
return Promise.resolve({
|
|
70
|
+
...context.projectGraph.nodes[target.project].data.targets[target.target]
|
|
71
|
+
.options,
|
|
72
|
+
...context.projectGraph.nodes[target.project].data.targets[target.target]
|
|
73
|
+
.configurations[target.configuration],
|
|
74
|
+
});
|
|
75
|
+
};
|
|
76
|
+
const builderContext = {
|
|
77
|
+
workspaceRoot: context.root,
|
|
78
|
+
target: {
|
|
79
|
+
project: context.projectName,
|
|
80
|
+
target: context.targetName,
|
|
81
|
+
configuration: context.configurationName,
|
|
82
|
+
},
|
|
83
|
+
builder: {
|
|
84
|
+
...builderInfo,
|
|
85
|
+
},
|
|
86
|
+
logger: (0, exports.getLogger)(),
|
|
87
|
+
id: 1,
|
|
88
|
+
currentDirectory: process.cwd(),
|
|
89
|
+
scheduleTarget: (...args) => architect.scheduleTarget(...args),
|
|
90
|
+
scheduleBuilder: (...args) => architect.scheduleBuilder(...args),
|
|
91
|
+
addTeardown(teardown) {
|
|
92
|
+
// No-op as Nx doesn't require an implementation of this function
|
|
93
|
+
return;
|
|
94
|
+
},
|
|
95
|
+
reportProgress(...args) {
|
|
96
|
+
// No-op as Nx doesn't require an implementation of this function
|
|
97
|
+
return;
|
|
98
|
+
},
|
|
99
|
+
reportRunning(...args) {
|
|
100
|
+
// No-op as Nx doesn't require an implementation of this function
|
|
101
|
+
return;
|
|
102
|
+
},
|
|
103
|
+
reportStatus(status) {
|
|
104
|
+
// No-op as Nx doesn't require an implementation of this function
|
|
105
|
+
return;
|
|
106
|
+
},
|
|
107
|
+
getBuilderNameForTarget,
|
|
108
|
+
getProjectMetadata,
|
|
109
|
+
validateOptions,
|
|
110
|
+
getTargetOptions,
|
|
111
|
+
};
|
|
112
|
+
return builderContext;
|
|
113
|
+
}
|
|
114
|
+
async function scheduleTarget(root, opts, verbose) {
|
|
115
|
+
const { Architect } = require('@angular-devkit/architect');
|
|
116
|
+
const logger = (0, exports.getLogger)(verbose);
|
|
117
|
+
const fsHost = new NxScopedHostForBuilders(root);
|
|
118
|
+
const { workspace } = await core_1.workspaces.readWorkspace('angular.json', core_1.workspaces.createWorkspaceHost(fsHost));
|
|
119
|
+
const registry = new core_1.schema.CoreSchemaRegistry();
|
|
120
|
+
registry.addPostTransform(core_1.schema.transforms.addUndefinedDefaults);
|
|
121
|
+
registry.addSmartDefaultProvider('unparsed', () => {
|
|
122
|
+
// This happens when context.scheduleTarget is used to run a target using nx:run-commands
|
|
123
|
+
return [];
|
|
124
|
+
});
|
|
125
|
+
const architectHost = await getWrappedWorkspaceNodeModulesArchitectHost(workspace, root, opts.projects);
|
|
126
|
+
const architect = new Architect(architectHost, registry);
|
|
127
|
+
const run = await architect.scheduleTarget({
|
|
128
|
+
project: opts.project,
|
|
129
|
+
target: opts.target,
|
|
130
|
+
configuration: opts.configuration,
|
|
131
|
+
}, opts.runOptions, { logger });
|
|
132
|
+
let lastOutputError;
|
|
133
|
+
return run.output.pipe((0, operators_1.tap)((output) => (lastOutputError = !output.success ? output.error : undefined), (error) => { }, // do nothing, this could be an intentional error
|
|
134
|
+
() => {
|
|
135
|
+
lastOutputError ? logger.error(lastOutputError) : 0;
|
|
136
|
+
}));
|
|
137
|
+
}
|
|
138
|
+
function createNodeModulesEngineHost(resolvePaths, projects) {
|
|
139
|
+
const NodeModulesEngineHost = require('@angular-devkit/schematics/tools')
|
|
140
|
+
.NodeModulesEngineHost;
|
|
141
|
+
class NxNodeModulesEngineHost extends NodeModulesEngineHost {
|
|
142
|
+
constructor() {
|
|
143
|
+
super(resolvePaths);
|
|
144
|
+
}
|
|
145
|
+
_resolveCollectionPath(name, requester) {
|
|
146
|
+
let collectionFilePath;
|
|
147
|
+
const paths = requester
|
|
148
|
+
? [(0, path_1.dirname)(requester), ...(resolvePaths || [])]
|
|
149
|
+
: resolvePaths || [];
|
|
150
|
+
if (name.endsWith('.json')) {
|
|
151
|
+
collectionFilePath = require.resolve(name, { paths });
|
|
152
|
+
}
|
|
153
|
+
else {
|
|
154
|
+
const { json: { generators, schematics }, path: packageJsonPath, } = (0, plugins_1.readPluginPackageJson)(name, projects, paths);
|
|
155
|
+
if (!schematics && !generators) {
|
|
156
|
+
throw new Error(`The "${name}" package does not support Nx generators or Angular Devkit schematics.`);
|
|
157
|
+
}
|
|
158
|
+
collectionFilePath = require.resolve((0, path_1.join)((0, path_1.dirname)(packageJsonPath), schematics ?? generators));
|
|
159
|
+
}
|
|
160
|
+
return collectionFilePath;
|
|
161
|
+
}
|
|
162
|
+
_transformCollectionDescription(name, desc) {
|
|
163
|
+
desc.schematics ??= desc.generators;
|
|
164
|
+
return super._transformCollectionDescription(name, desc);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
return new NxNodeModulesEngineHost();
|
|
168
|
+
}
|
|
169
|
+
function createWorkflow(fsHost, root, opts, projects) {
|
|
170
|
+
const NodeWorkflow = require('@angular-devkit/schematics/tools').NodeWorkflow;
|
|
171
|
+
const workflow = new NodeWorkflow(fsHost, {
|
|
172
|
+
force: false,
|
|
173
|
+
dryRun: opts.dryRun,
|
|
174
|
+
packageManager: (0, package_manager_1.detectPackageManager)(),
|
|
175
|
+
root: (0, core_1.normalize)(root),
|
|
176
|
+
registry: new core_1.schema.CoreSchemaRegistry(require('@angular-devkit/schematics').formats.standardFormats),
|
|
177
|
+
resolvePaths: [process.cwd(), root],
|
|
178
|
+
engineHostCreator: (options) => createNodeModulesEngineHost(options.resolvePaths, projects),
|
|
179
|
+
});
|
|
180
|
+
workflow.registry.addPostTransform(core_1.schema.transforms.addUndefinedDefaults);
|
|
181
|
+
workflow.engineHost.registerOptionsTransform(require('@angular-devkit/schematics/tools').validateOptionsWithSchema(workflow.registry));
|
|
182
|
+
if (opts.interactive) {
|
|
183
|
+
workflow.registry.usePromptProvider(createPromptProvider());
|
|
184
|
+
}
|
|
185
|
+
return workflow;
|
|
186
|
+
}
|
|
187
|
+
function getCollection(workflow, name) {
|
|
188
|
+
const collection = workflow.engine.createCollection(name);
|
|
189
|
+
if (!collection)
|
|
190
|
+
throw new Error(`Cannot find collection '${name}'`);
|
|
191
|
+
return collection;
|
|
192
|
+
}
|
|
193
|
+
async function createRecorder(host, record, logger) {
|
|
194
|
+
return (event) => {
|
|
195
|
+
let eventPath = event.path.startsWith('/')
|
|
196
|
+
? event.path.slice(1)
|
|
197
|
+
: event.path;
|
|
198
|
+
if (event.kind === 'error') {
|
|
199
|
+
record.error = true;
|
|
200
|
+
logger.warn(`ERROR! ${eventPath} ${event.description == 'alreadyExist'
|
|
201
|
+
? 'already exists'
|
|
202
|
+
: 'does not exist.'}.`);
|
|
203
|
+
}
|
|
204
|
+
else if (event.kind === 'update') {
|
|
205
|
+
record.loggingQueue.push(core_1.tags.oneLine `${chalk.white('UPDATE')} ${eventPath}`);
|
|
206
|
+
}
|
|
207
|
+
else if (event.kind === 'create') {
|
|
208
|
+
record.loggingQueue.push(core_1.tags.oneLine `${chalk.green('CREATE')} ${eventPath}`);
|
|
209
|
+
}
|
|
210
|
+
else if (event.kind === 'delete') {
|
|
211
|
+
record.loggingQueue.push(`${chalk.yellow('DELETE')} ${eventPath}`);
|
|
212
|
+
}
|
|
213
|
+
else if (event.kind === 'rename') {
|
|
214
|
+
record.loggingQueue.push(`${chalk.blue('RENAME')} ${eventPath} => ${event.to}`);
|
|
215
|
+
}
|
|
216
|
+
};
|
|
217
|
+
}
|
|
218
|
+
async function runSchematic(host, root, workflow, logger, opts, schematic, printDryRunMessage = true, recorder = null) {
|
|
219
|
+
const record = { loggingQueue: [], error: false };
|
|
220
|
+
workflow.reporter.subscribe(recorder || (await createRecorder(host, record, logger)));
|
|
221
|
+
try {
|
|
222
|
+
await workflow
|
|
223
|
+
.execute({
|
|
224
|
+
collection: opts.collectionName,
|
|
225
|
+
schematic: opts.generatorName,
|
|
226
|
+
options: opts.generatorOptions,
|
|
227
|
+
debug: false,
|
|
228
|
+
logger,
|
|
229
|
+
})
|
|
230
|
+
.toPromise();
|
|
231
|
+
}
|
|
232
|
+
catch (e) {
|
|
233
|
+
console.error(e);
|
|
234
|
+
throw e;
|
|
235
|
+
}
|
|
236
|
+
if (!record.error) {
|
|
237
|
+
record.loggingQueue.forEach((log) => logger.info(log));
|
|
238
|
+
}
|
|
239
|
+
if (opts.dryRun && printDryRunMessage) {
|
|
240
|
+
logger.warn(`\nNOTE: The "dryRun" flag means no changes were made.`);
|
|
241
|
+
}
|
|
242
|
+
return { status: 0, loggingQueue: record.loggingQueue };
|
|
243
|
+
}
|
|
244
|
+
class NxScopedHost extends core_1.virtualFs.ScopedHost {
|
|
245
|
+
constructor(root) {
|
|
246
|
+
super(new node_1.NodeJsSyncHost(), (0, core_1.normalize)(root));
|
|
247
|
+
this.root = root;
|
|
248
|
+
}
|
|
249
|
+
read(path) {
|
|
250
|
+
if ((path === 'angular.json' || path === '/angular.json') &&
|
|
251
|
+
(0, angular_json_1.isAngularPluginInstalled)()) {
|
|
252
|
+
return this.readMergedWorkspaceConfiguration().pipe((0, operators_1.map)((r) => Buffer.from(JSON.stringify((0, angular_json_1.toOldFormat)(r)))));
|
|
253
|
+
}
|
|
254
|
+
else {
|
|
255
|
+
return super.read(path);
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
readMergedWorkspaceConfiguration() {
|
|
259
|
+
return (0, rxjs_1.zip)((0, rxjs_1.from)((0, project_graph_1.createProjectGraphAsync)()), this.readExistingAngularJson(), this.readJson('nx.json')).pipe((0, operators_1.concatMap)(([graph, angularJson, nxJson]) => {
|
|
260
|
+
const workspaceConfig = (angularJson || { projects: {} });
|
|
261
|
+
workspaceConfig.cli ??= nxJson.cli;
|
|
262
|
+
workspaceConfig.schematics ??= nxJson.generators;
|
|
263
|
+
const projectJsonReads = [];
|
|
264
|
+
for (let projectName of Object.keys(graph.nodes)) {
|
|
265
|
+
if (!workspaceConfig.projects[projectName]) {
|
|
266
|
+
projectJsonReads.push((0, rxjs_1.zip)((0, rxjs_1.of)(projectName), this.readJson((0, path_1.join)(graph.nodes[projectName].data.root, 'project.json'))));
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
return (0, rxjs_1.zip)(...projectJsonReads).pipe((0, operators_1.map)((reads) => {
|
|
270
|
+
reads
|
|
271
|
+
.filter(([, p]) => p !== null)
|
|
272
|
+
.forEach(([projectName, project]) => {
|
|
273
|
+
workspaceConfig.projects[projectName] = {
|
|
274
|
+
...project,
|
|
275
|
+
root: graph.nodes[projectName].data.root,
|
|
276
|
+
};
|
|
277
|
+
});
|
|
278
|
+
return workspaceConfig;
|
|
279
|
+
}));
|
|
280
|
+
}), (0, operators_1.catchError)((err) => {
|
|
281
|
+
console.error('Unable to read angular.json');
|
|
282
|
+
console.error(err);
|
|
283
|
+
process.exit(1);
|
|
284
|
+
}));
|
|
285
|
+
}
|
|
286
|
+
write(path, content) {
|
|
287
|
+
if (path === 'angular.json' || path === '/angular.json') {
|
|
288
|
+
const configV2 = (0, angular_json_1.toNewFormat)((0, json_2.parseJson)(content.toString()));
|
|
289
|
+
const root = this.root;
|
|
290
|
+
return (0, rxjs_1.zip)(this.readMergedWorkspaceConfiguration(), this.readExistingAngularJson()).pipe((0, operators_1.concatMap)((arg) => {
|
|
291
|
+
const existingConfig = arg[0];
|
|
292
|
+
const existingAngularJson = arg[1];
|
|
293
|
+
const projectsInAngularJson = existingAngularJson
|
|
294
|
+
? Object.keys(existingAngularJson.projects)
|
|
295
|
+
: [];
|
|
296
|
+
const projects = configV2.projects;
|
|
297
|
+
const allObservables = [];
|
|
298
|
+
Object.keys(projects).forEach((projectName) => {
|
|
299
|
+
if (projectsInAngularJson.includes(projectName)) {
|
|
300
|
+
// ignore updates to angular.json
|
|
301
|
+
}
|
|
302
|
+
else {
|
|
303
|
+
(0, project_configuration_1.updateProjectConfiguration)({
|
|
304
|
+
root,
|
|
305
|
+
exists: () => true,
|
|
306
|
+
write: (path, content) => {
|
|
307
|
+
if (existingConfig.projects[projectName]) {
|
|
308
|
+
const updatedContent = this.mergeProjectConfiguration(existingConfig.projects[projectName], projects[projectName], projectName);
|
|
309
|
+
if (updatedContent) {
|
|
310
|
+
delete updatedContent.root;
|
|
311
|
+
allObservables.push(super.write(path, Buffer.from(JSON.stringify(updatedContent, null, 2))));
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
else {
|
|
315
|
+
allObservables.push(super.write(path, Buffer.from(content)));
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
}, projectName, projects[projectName]);
|
|
319
|
+
}
|
|
320
|
+
});
|
|
321
|
+
return (0, rxjs_1.concat)(...allObservables);
|
|
322
|
+
}));
|
|
323
|
+
}
|
|
324
|
+
else {
|
|
325
|
+
return super.write(path, content);
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
isFile(path) {
|
|
329
|
+
if (path === 'angular.json' || path === '/angular.json') {
|
|
330
|
+
return (0, rxjs_1.of)(true);
|
|
331
|
+
}
|
|
332
|
+
else {
|
|
333
|
+
return super.isFile(path);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
exists(path) {
|
|
337
|
+
if (path === 'angular.json' || path === '/angular.json') {
|
|
338
|
+
return (0, rxjs_1.of)(true);
|
|
339
|
+
}
|
|
340
|
+
else {
|
|
341
|
+
return super.exists(path);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
mergeProjectConfiguration(existing, updated, projectName) {
|
|
345
|
+
const res = { ...existing };
|
|
346
|
+
let modified = false;
|
|
347
|
+
function updatePropertyIfDifferent(property) {
|
|
348
|
+
if (typeof res[property] === 'string') {
|
|
349
|
+
if (res[property] !== updated[property]) {
|
|
350
|
+
res[property] = updated[property];
|
|
351
|
+
modified = true;
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
else if (JSON.stringify(res[property]) !== JSON.stringify(updated[property])) {
|
|
355
|
+
res[property] = updated[property];
|
|
356
|
+
modified = true;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
if (!res.name || (updated.name && res.name !== updated.name)) {
|
|
360
|
+
res.name ??= updated.name || projectName;
|
|
361
|
+
modified = true;
|
|
362
|
+
}
|
|
363
|
+
updatePropertyIfDifferent('projectType');
|
|
364
|
+
updatePropertyIfDifferent('sourceRoot');
|
|
365
|
+
updatePropertyIfDifferent('prefix');
|
|
366
|
+
updatePropertyIfDifferent('targets');
|
|
367
|
+
updatePropertyIfDifferent('generators');
|
|
368
|
+
updatePropertyIfDifferent('implicitDependencies');
|
|
369
|
+
updatePropertyIfDifferent('tags');
|
|
370
|
+
return modified ? res : null;
|
|
371
|
+
}
|
|
372
|
+
readExistingAngularJson() {
|
|
373
|
+
return this.readJson('angular.json');
|
|
374
|
+
}
|
|
375
|
+
readJson(path) {
|
|
376
|
+
return super
|
|
377
|
+
.exists(path)
|
|
378
|
+
.pipe((0, operators_1.concatMap)((r) => r
|
|
379
|
+
? super
|
|
380
|
+
.read(path)
|
|
381
|
+
.pipe((0, operators_1.map)((r) => (0, json_2.parseJson)(arrayBufferToString(r))))
|
|
382
|
+
: (0, rxjs_1.of)(null)));
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
exports.NxScopedHost = NxScopedHost;
|
|
386
|
+
/**
|
|
387
|
+
* Host used by Angular CLI builders. It reads the project configurations from
|
|
388
|
+
* the project graph to access the expanded targets.
|
|
389
|
+
*/
|
|
390
|
+
class NxScopedHostForBuilders extends NxScopedHost {
|
|
391
|
+
readMergedWorkspaceConfiguration() {
|
|
392
|
+
return (0, rxjs_1.zip)((0, rxjs_1.from)((0, project_graph_1.createProjectGraphAsync)()), this.readExistingAngularJson(), this.readJson('nx.json')).pipe((0, operators_1.map)(([graph, angularJson, nxJson]) => {
|
|
393
|
+
const workspaceConfig = (angularJson || { projects: {} });
|
|
394
|
+
workspaceConfig.cli ??= nxJson.cli;
|
|
395
|
+
workspaceConfig.schematics ??= nxJson.generators;
|
|
396
|
+
for (const projectName of Object.keys(graph.nodes)) {
|
|
397
|
+
workspaceConfig.projects[projectName] ??= {
|
|
398
|
+
...graph.nodes[projectName].data,
|
|
399
|
+
};
|
|
400
|
+
}
|
|
401
|
+
return workspaceConfig;
|
|
402
|
+
}), (0, operators_1.catchError)((err) => {
|
|
403
|
+
console.error('Unable to read angular.json');
|
|
404
|
+
console.error(err);
|
|
405
|
+
process.exit(1);
|
|
406
|
+
}));
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
exports.NxScopedHostForBuilders = NxScopedHostForBuilders;
|
|
410
|
+
function arrayBufferToString(buffer) {
|
|
411
|
+
const array = new Uint8Array(buffer);
|
|
412
|
+
let result = '';
|
|
413
|
+
const chunkSize = 8 * 1024;
|
|
414
|
+
let i = 0;
|
|
415
|
+
for (i = 0; i < array.length / chunkSize; i++) {
|
|
416
|
+
result += String.fromCharCode.apply(null, array.subarray(i * chunkSize, (i + 1) * chunkSize));
|
|
417
|
+
}
|
|
418
|
+
result += String.fromCharCode.apply(null, array.subarray(i * chunkSize));
|
|
419
|
+
return result;
|
|
420
|
+
}
|
|
421
|
+
/**
|
|
422
|
+
* Host used by Angular CLI schematics. It reads the project configurations from
|
|
423
|
+
* the project configuration files.
|
|
424
|
+
*/
|
|
425
|
+
class NxScopeHostUsedForWrappedSchematics extends NxScopedHost {
|
|
426
|
+
constructor(root, host) {
|
|
427
|
+
super(root);
|
|
428
|
+
this.host = host;
|
|
429
|
+
}
|
|
430
|
+
read(path) {
|
|
431
|
+
if ((path === 'angular.json' || path === '/angular.json') &&
|
|
432
|
+
(0, angular_json_1.isAngularPluginInstalled)()) {
|
|
433
|
+
const projectJsonConfig = (0, angular_json_1.toOldFormat)({
|
|
434
|
+
projects: Object.fromEntries((0, project_configuration_1.getProjects)(this.host)),
|
|
435
|
+
});
|
|
436
|
+
return super.readExistingAngularJson().pipe((0, operators_1.map)((angularJson) => {
|
|
437
|
+
if (angularJson) {
|
|
438
|
+
return Buffer.from(JSON.stringify({
|
|
439
|
+
version: 1,
|
|
440
|
+
projects: {
|
|
441
|
+
...projectJsonConfig.projects,
|
|
442
|
+
...angularJson.projects,
|
|
443
|
+
},
|
|
444
|
+
}));
|
|
445
|
+
}
|
|
446
|
+
else {
|
|
447
|
+
return Buffer.from(JSON.stringify(projectJsonConfig));
|
|
448
|
+
}
|
|
449
|
+
}));
|
|
450
|
+
}
|
|
451
|
+
else {
|
|
452
|
+
const match = findMatchingFileChange(this.host, path);
|
|
453
|
+
if (match) {
|
|
454
|
+
return (0, rxjs_1.of)(Buffer.from(match.content));
|
|
455
|
+
}
|
|
456
|
+
else {
|
|
457
|
+
return super.read(path);
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
exists(path) {
|
|
462
|
+
if (this.host.exists(path)) {
|
|
463
|
+
return (0, rxjs_1.of)(true);
|
|
464
|
+
}
|
|
465
|
+
else if (path === 'angular.json' || path === '/angular.json') {
|
|
466
|
+
return (0, rxjs_1.of)(true);
|
|
467
|
+
}
|
|
468
|
+
else {
|
|
469
|
+
return super.exists(path);
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
isDirectory(path) {
|
|
473
|
+
if (this.host.exists(path) && !this.host.isFile(path)) {
|
|
474
|
+
return (0, rxjs_1.of)(true);
|
|
475
|
+
}
|
|
476
|
+
else if (path === 'angular.json' || path === '/angular.json') {
|
|
477
|
+
return (0, rxjs_1.of)(false);
|
|
478
|
+
}
|
|
479
|
+
else {
|
|
480
|
+
return super.isDirectory(path);
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
isFile(path) {
|
|
484
|
+
if (this.host.isFile(path)) {
|
|
485
|
+
return (0, rxjs_1.of)(true);
|
|
486
|
+
}
|
|
487
|
+
else if (path === 'angular.json' || path === '/angular.json') {
|
|
488
|
+
return (0, rxjs_1.of)(true);
|
|
489
|
+
}
|
|
490
|
+
else {
|
|
491
|
+
return super.isFile(path);
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
list(path) {
|
|
495
|
+
const fragments = this.host.children(path).map((child) => (0, core_1.fragment)(child));
|
|
496
|
+
return (0, rxjs_1.of)(fragments);
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
exports.NxScopeHostUsedForWrappedSchematics = NxScopeHostUsedForWrappedSchematics;
|
|
500
|
+
function findMatchingFileChange(host, path) {
|
|
501
|
+
const targetPath = (0, core_1.normalize)(path.startsWith('/') ? path.substring(1) : path.toString());
|
|
502
|
+
return host
|
|
503
|
+
.listChanges()
|
|
504
|
+
.find((f) => f.type !== 'DELETE' && (0, core_1.normalize)(f.path) === targetPath);
|
|
505
|
+
}
|
|
506
|
+
async function generate(root, opts, projects, verbose) {
|
|
507
|
+
const logger = (0, exports.getLogger)(verbose);
|
|
508
|
+
const fsHost = new NxScopeHostUsedForWrappedSchematics(root, new tree_1.FsTree(root, verbose, `ng-cli generator: ${opts.collectionName}:${opts.generatorName}`));
|
|
509
|
+
const workflow = createWorkflow(fsHost, root, opts, projects);
|
|
510
|
+
const collection = getCollection(workflow, opts.collectionName);
|
|
511
|
+
const schematic = collection.createSchematic(opts.generatorName, true);
|
|
512
|
+
return (await runSchematic(fsHost, root, workflow, logger, { ...opts, generatorName: schematic.description.name }, schematic)).status;
|
|
513
|
+
}
|
|
514
|
+
function createPromptProvider() {
|
|
515
|
+
return (definitions) => {
|
|
516
|
+
const questions = definitions.map((definition) => {
|
|
517
|
+
const question = {
|
|
518
|
+
name: definition.id,
|
|
519
|
+
message: definition.message,
|
|
520
|
+
};
|
|
521
|
+
if (definition.default) {
|
|
522
|
+
question.initial = definition.default;
|
|
523
|
+
}
|
|
524
|
+
const validator = definition.validator;
|
|
525
|
+
if (validator) {
|
|
526
|
+
question.validate = (input) => validator(input);
|
|
527
|
+
}
|
|
528
|
+
switch (definition.type) {
|
|
529
|
+
case 'string':
|
|
530
|
+
case 'input':
|
|
531
|
+
return { ...question, type: 'input' };
|
|
532
|
+
case 'boolean':
|
|
533
|
+
case 'confirmation':
|
|
534
|
+
case 'confirm':
|
|
535
|
+
return { ...question, type: 'confirm' };
|
|
536
|
+
case 'number':
|
|
537
|
+
case 'numeral':
|
|
538
|
+
return { ...question, type: 'numeral' };
|
|
539
|
+
case 'list':
|
|
540
|
+
return {
|
|
541
|
+
...question,
|
|
542
|
+
type: !!definition.multiselect ? 'multiselect' : 'select',
|
|
543
|
+
choices: definition.items &&
|
|
544
|
+
definition.items.map((item) => {
|
|
545
|
+
if (typeof item == 'string') {
|
|
546
|
+
return item;
|
|
547
|
+
}
|
|
548
|
+
else {
|
|
549
|
+
return {
|
|
550
|
+
message: item.label,
|
|
551
|
+
name: item.value,
|
|
552
|
+
};
|
|
553
|
+
}
|
|
554
|
+
}),
|
|
555
|
+
};
|
|
556
|
+
default:
|
|
557
|
+
return { ...question, type: definition.type };
|
|
558
|
+
}
|
|
559
|
+
});
|
|
560
|
+
return require('enquirer').prompt(questions);
|
|
561
|
+
};
|
|
562
|
+
}
|
|
563
|
+
async function runMigration(root, packageName, migrationName, projects, isVerbose) {
|
|
564
|
+
const logger = (0, exports.getLogger)(isVerbose);
|
|
565
|
+
const fsHost = new NxScopeHostUsedForWrappedSchematics(root, new tree_1.FsTree(root, isVerbose, `ng-cli migration: ${packageName}:${migrationName}`));
|
|
566
|
+
const workflow = createWorkflow(fsHost, root, {}, projects);
|
|
567
|
+
const collection = resolveMigrationsCollection(packageName);
|
|
568
|
+
const record = { loggingQueue: [], error: false };
|
|
569
|
+
workflow.reporter.subscribe(await createRecorder(fsHost, record, logger));
|
|
570
|
+
await workflow
|
|
571
|
+
.execute({
|
|
572
|
+
collection,
|
|
573
|
+
schematic: migrationName,
|
|
574
|
+
options: {},
|
|
575
|
+
debug: false,
|
|
576
|
+
logger: logger,
|
|
577
|
+
})
|
|
578
|
+
.toPromise();
|
|
579
|
+
return {
|
|
580
|
+
loggingQueue: record.loggingQueue,
|
|
581
|
+
madeChanges: record.loggingQueue.length > 0,
|
|
582
|
+
};
|
|
583
|
+
}
|
|
584
|
+
function resolveMigrationsCollection(name) {
|
|
585
|
+
let collectionPath = undefined;
|
|
586
|
+
if (name.startsWith('.') || name.startsWith('/')) {
|
|
587
|
+
name = (0, path_1.resolve)(name);
|
|
588
|
+
}
|
|
589
|
+
if ((0, path_1.extname)(name)) {
|
|
590
|
+
collectionPath = require.resolve(name);
|
|
591
|
+
}
|
|
592
|
+
else {
|
|
593
|
+
const { path: packageJsonPath, packageJson } = (0, package_json_1.readModulePackageJson)(name, (0, installation_directory_1.getNxRequirePaths)(process.cwd()));
|
|
594
|
+
let pkgJsonSchematics = packageJson['nx-migrations'] ?? packageJson['ng-update'];
|
|
595
|
+
if (!pkgJsonSchematics) {
|
|
596
|
+
throw new Error(`Could not find migrations in package: "${name}"`);
|
|
597
|
+
}
|
|
598
|
+
if (typeof pkgJsonSchematics != 'string') {
|
|
599
|
+
pkgJsonSchematics = pkgJsonSchematics.migrations;
|
|
600
|
+
}
|
|
601
|
+
collectionPath = require.resolve(pkgJsonSchematics, {
|
|
602
|
+
paths: [(0, path_1.dirname)(packageJsonPath)],
|
|
603
|
+
});
|
|
604
|
+
}
|
|
605
|
+
try {
|
|
606
|
+
if (collectionPath) {
|
|
607
|
+
(0, fileutils_1.readJsonFile)(collectionPath);
|
|
608
|
+
return collectionPath;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
catch {
|
|
612
|
+
throw new Error(`Invalid migration file in package: "${name}"`);
|
|
613
|
+
}
|
|
614
|
+
throw new Error(`Collection cannot be resolved: "${name}"`);
|
|
615
|
+
}
|
|
616
|
+
let collectionResolutionOverrides = null;
|
|
617
|
+
let mockedSchematics = null;
|
|
618
|
+
/**
|
|
619
|
+
* If you have an Nx Devkit generator invoking the wrapped Angular Devkit schematic,
|
|
620
|
+
* and you don't want the Angular Devkit schematic to run, you can mock it up using this function.
|
|
621
|
+
*
|
|
622
|
+
* Unfortunately, there are some edge cases in the Nx-Angular devkit integration that
|
|
623
|
+
* can be seen in the unit tests context. This function is useful for handling that as well.
|
|
624
|
+
*
|
|
625
|
+
* In this case, you can mock it up.
|
|
626
|
+
*
|
|
627
|
+
* Example:
|
|
628
|
+
*
|
|
629
|
+
* ```typescript
|
|
630
|
+
* mockSchematicsForTesting({
|
|
631
|
+
* 'mycollection:myschematic': (tree, params) => {
|
|
632
|
+
* tree.write("README.md");
|
|
633
|
+
* }
|
|
634
|
+
* });
|
|
635
|
+
*
|
|
636
|
+
* ```
|
|
637
|
+
*/
|
|
638
|
+
function mockSchematicsForTesting(schematics) {
|
|
639
|
+
mockedSchematics = schematics;
|
|
640
|
+
}
|
|
641
|
+
function wrapAngularDevkitSchematic(collectionName, generatorName) {
|
|
642
|
+
// This is idempotent, if it happens to get called
|
|
643
|
+
// multiple times its no big deal. It ensures that some
|
|
644
|
+
// patches are applied to @angular-devkit code which
|
|
645
|
+
// are necessary. For the most part, our wrapped host hits
|
|
646
|
+
// the necessary areas, but for some things it wouldn't make
|
|
647
|
+
// sense for the adapter to be 100% accurate.
|
|
648
|
+
//
|
|
649
|
+
// e.g. Angular warns about tags, but some angular CLI schematics
|
|
650
|
+
// were written with Nx in mind, and may care about tags.
|
|
651
|
+
require('./compat');
|
|
652
|
+
return async (host, generatorOptions) => {
|
|
653
|
+
const graph = await (0, project_graph_1.createProjectGraphAsync)();
|
|
654
|
+
const { projects } = (0, project_graph_1.readProjectsConfigurationFromProjectGraph)(graph);
|
|
655
|
+
if (mockedSchematics &&
|
|
656
|
+
mockedSchematics[`${collectionName}:${generatorName}`]) {
|
|
657
|
+
return await mockedSchematics[`${collectionName}:${generatorName}`](host, generatorOptions);
|
|
658
|
+
}
|
|
659
|
+
const recorder = (event) => {
|
|
660
|
+
let eventPath = event.path.startsWith('/')
|
|
661
|
+
? event.path.slice(1)
|
|
662
|
+
: event.path;
|
|
663
|
+
if (event.kind === 'error') {
|
|
664
|
+
}
|
|
665
|
+
else if (event.kind === 'update') {
|
|
666
|
+
// Apply special handling for the angular.json file, but only when in an Nx workspace
|
|
667
|
+
if (eventPath === 'angular.json' && (0, angular_json_1.isAngularPluginInstalled)()) {
|
|
668
|
+
saveProjectsConfigurationsInWrappedSchematic(host, event.content.toString());
|
|
669
|
+
}
|
|
670
|
+
else {
|
|
671
|
+
host.write(eventPath, event.content);
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
else if (event.kind === 'create') {
|
|
675
|
+
host.write(eventPath, event.content);
|
|
676
|
+
}
|
|
677
|
+
else if (event.kind === 'delete') {
|
|
678
|
+
host.delete(eventPath);
|
|
679
|
+
}
|
|
680
|
+
else if (event.kind === 'rename') {
|
|
681
|
+
host.rename(eventPath, event.to);
|
|
682
|
+
}
|
|
683
|
+
};
|
|
684
|
+
const fsHost = new NxScopeHostUsedForWrappedSchematics(host.root, host);
|
|
685
|
+
const logger = (0, exports.getLogger)(generatorOptions.verbose);
|
|
686
|
+
const options = {
|
|
687
|
+
generatorOptions,
|
|
688
|
+
dryRun: true,
|
|
689
|
+
interactive: false,
|
|
690
|
+
help: false,
|
|
691
|
+
debug: false,
|
|
692
|
+
collectionName,
|
|
693
|
+
generatorName,
|
|
694
|
+
force: false,
|
|
695
|
+
defaults: false,
|
|
696
|
+
quiet: false,
|
|
697
|
+
};
|
|
698
|
+
const workflow = createWorkflow(fsHost, host.root, options, projects);
|
|
699
|
+
// used for testing
|
|
700
|
+
if (collectionResolutionOverrides) {
|
|
701
|
+
const r = workflow.engineHost.resolve;
|
|
702
|
+
workflow.engineHost.resolve = (collection, b, c) => {
|
|
703
|
+
if (collectionResolutionOverrides[collection]) {
|
|
704
|
+
return collectionResolutionOverrides[collection];
|
|
705
|
+
}
|
|
706
|
+
else {
|
|
707
|
+
return r.apply(workflow.engineHost, [collection, b, c]);
|
|
708
|
+
}
|
|
709
|
+
};
|
|
710
|
+
}
|
|
711
|
+
const collection = getCollection(workflow, collectionName);
|
|
712
|
+
const schematic = collection.createSchematic(generatorName, true);
|
|
713
|
+
const res = await runSchematic(fsHost, host.root, workflow, logger, options, schematic, false, recorder);
|
|
714
|
+
if (res.status !== 0) {
|
|
715
|
+
throw new Error(res.loggingQueue.join('\n'));
|
|
716
|
+
}
|
|
717
|
+
const { lastValueFrom } = require('rxjs');
|
|
718
|
+
const toPromise = (obs) => lastValueFrom ? lastValueFrom(obs) : obs.toPromise();
|
|
719
|
+
return async () => {
|
|
720
|
+
// https://github.com/angular/angular-cli/blob/344193f79d880177e421cff85dd3e94338d07420/packages/angular_devkit/schematics/src/workflow/base.ts#L194-L200
|
|
721
|
+
await toPromise(workflow.engine
|
|
722
|
+
.executePostTasks()
|
|
723
|
+
.pipe((0, operators_1.defaultIfEmpty)(undefined), (0, operators_1.last)()));
|
|
724
|
+
};
|
|
725
|
+
};
|
|
726
|
+
}
|
|
727
|
+
let logger;
|
|
728
|
+
const getLogger = (isVerbose = false) => {
|
|
729
|
+
if (!logger) {
|
|
730
|
+
logger = (0, node_1.createConsoleLogger)(isVerbose, process.stdout, process.stderr, {
|
|
731
|
+
warn: (s) => chalk.bold(chalk.yellow(s)),
|
|
732
|
+
error: (s) => {
|
|
733
|
+
if (s.startsWith('NX ')) {
|
|
734
|
+
return `\n${logger_1.NX_ERROR} ${chalk.bold(chalk.red(s.slice(3)))}\n`;
|
|
735
|
+
}
|
|
736
|
+
return chalk.bold(chalk.red(s));
|
|
737
|
+
},
|
|
738
|
+
info: (s) => {
|
|
739
|
+
if (s.startsWith('NX ')) {
|
|
740
|
+
return `\n${logger_1.NX_PREFIX} ${chalk.bold(s.slice(3))}\n`;
|
|
741
|
+
}
|
|
742
|
+
return chalk.white(s);
|
|
743
|
+
},
|
|
744
|
+
});
|
|
745
|
+
}
|
|
746
|
+
return logger;
|
|
747
|
+
};
|
|
748
|
+
exports.getLogger = getLogger;
|
|
749
|
+
function saveProjectsConfigurationsInWrappedSchematic(host, content) {
|
|
750
|
+
const projects = (0, angular_json_1.toNewFormat)((0, json_2.parseJson)(content)).projects;
|
|
751
|
+
const existingProjects = (0, project_configuration_1.getProjects)(host);
|
|
752
|
+
const existingAngularJson = host.exists('angular.json')
|
|
753
|
+
? (0, json_1.readJson)(host, 'angular.json')
|
|
754
|
+
: null;
|
|
755
|
+
const projectsInAngularJson = existingAngularJson
|
|
756
|
+
? Object.keys(existingAngularJson.projects)
|
|
757
|
+
: [];
|
|
758
|
+
const newAngularJson = existingAngularJson || {};
|
|
759
|
+
// Reset projects in order to rebuild them, but leave other properties untouched
|
|
760
|
+
newAngularJson.projects = {};
|
|
761
|
+
Object.keys(projects).forEach((projectName) => {
|
|
762
|
+
if (projectsInAngularJson.includes(projectName)) {
|
|
763
|
+
newAngularJson.projects[projectName] = projects[projectName];
|
|
764
|
+
}
|
|
765
|
+
else {
|
|
766
|
+
if (existingProjects.has(projectName)) {
|
|
767
|
+
if (JSON.stringify(existingProjects.get(projectName)) !==
|
|
768
|
+
JSON.stringify(projects[projectName])) {
|
|
769
|
+
(0, project_configuration_1.updateProjectConfiguration)(host, projectName, projects[projectName]);
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
else {
|
|
773
|
+
(0, project_configuration_1.addProjectConfiguration)(host, projectName, projects[projectName]);
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
});
|
|
777
|
+
if (Object.keys(newAngularJson.projects).length > 0) {
|
|
778
|
+
host.write('angular.json', JSON.stringify((0, angular_json_1.toOldFormat)(newAngularJson), null, 2));
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
async function getWrappedWorkspaceNodeModulesArchitectHost(workspace, root, projects) {
|
|
782
|
+
const { WorkspaceNodeModulesArchitectHost: AngularWorkspaceNodeModulesArchitectHost, } = await Promise.resolve().then(() => require('@angular-devkit/architect/node'));
|
|
783
|
+
class WrappedWorkspaceNodeModulesArchitectHost extends AngularWorkspaceNodeModulesArchitectHost {
|
|
784
|
+
constructor(workspace, root, projects) {
|
|
785
|
+
super(workspace, root);
|
|
786
|
+
this.workspace = workspace;
|
|
787
|
+
this.root = root;
|
|
788
|
+
this.projects = projects;
|
|
789
|
+
}
|
|
790
|
+
async resolveBuilder(builderStr) {
|
|
791
|
+
const [packageName, builderName] = builderStr.split(':');
|
|
792
|
+
const { executorsFilePath, executorConfig } = this.readExecutorsJson(packageName, builderName);
|
|
793
|
+
const builderInfo = this.readExecutor(packageName, builderName);
|
|
794
|
+
return {
|
|
795
|
+
name: builderStr,
|
|
796
|
+
builderName,
|
|
797
|
+
description: executorConfig.description,
|
|
798
|
+
optionSchema: builderInfo.schema,
|
|
799
|
+
import: (0, schema_utils_1.resolveImplementation)(executorConfig.implementation, (0, path_1.dirname)(executorsFilePath)),
|
|
800
|
+
};
|
|
801
|
+
}
|
|
802
|
+
readExecutorsJson(nodeModule, builder, extraRequirePaths = []) {
|
|
803
|
+
const { json: packageJson, path: packageJsonPath } = (0, plugins_1.readPluginPackageJson)(nodeModule, this.projects, this.root
|
|
804
|
+
? [this.root, __dirname, ...extraRequirePaths]
|
|
805
|
+
: [__dirname, ...extraRequirePaths]);
|
|
806
|
+
const executorsFile = packageJson.executors ?? packageJson.builders;
|
|
807
|
+
if (!executorsFile) {
|
|
808
|
+
throw new Error(`The "${nodeModule}" package does not support Nx executors or Angular Devkit Builders.`);
|
|
809
|
+
}
|
|
810
|
+
const basePath = (0, path_1.dirname)(packageJsonPath);
|
|
811
|
+
const executorsFilePath = require.resolve((0, path_1.join)(basePath, executorsFile));
|
|
812
|
+
const executorsJson = (0, fileutils_1.readJsonFile)(executorsFilePath);
|
|
813
|
+
const executorConfig = executorsJson.builders?.[builder] ?? executorsJson.executors?.[builder];
|
|
814
|
+
if (!executorConfig) {
|
|
815
|
+
throw new Error(`Cannot find builder '${builder}' in ${executorsFilePath}.`);
|
|
816
|
+
}
|
|
817
|
+
if (typeof executorConfig === 'string') {
|
|
818
|
+
// Angular CLI can have a builder pointing to another package:builder
|
|
819
|
+
const [packageName, executorName] = executorConfig.split(':');
|
|
820
|
+
return this.readExecutorsJson(packageName, executorName, [basePath]);
|
|
821
|
+
}
|
|
822
|
+
return { executorsFilePath, executorConfig, isNgCompat: true };
|
|
823
|
+
}
|
|
824
|
+
readExecutor(nodeModule, executor) {
|
|
825
|
+
try {
|
|
826
|
+
const { executorsFilePath, executorConfig, isNgCompat } = this.readExecutorsJson(nodeModule, executor);
|
|
827
|
+
const executorsDir = (0, path_1.dirname)(executorsFilePath);
|
|
828
|
+
const schemaPath = (0, schema_utils_1.resolveSchema)(executorConfig.schema, executorsDir);
|
|
829
|
+
const schema = (0, executor_utils_1.normalizeExecutorSchema)((0, fileutils_1.readJsonFile)(schemaPath));
|
|
830
|
+
const implementationFactory = this.getImplementationFactory(executorConfig.implementation, executorsDir);
|
|
831
|
+
const batchImplementationFactory = executorConfig.batchImplementation
|
|
832
|
+
? this.getImplementationFactory(executorConfig.batchImplementation, executorsDir)
|
|
833
|
+
: null;
|
|
834
|
+
const hasherFactory = executorConfig.hasher
|
|
835
|
+
? this.getImplementationFactory(executorConfig.hasher, executorsDir)
|
|
836
|
+
: null;
|
|
837
|
+
return {
|
|
838
|
+
schema,
|
|
839
|
+
implementationFactory,
|
|
840
|
+
batchImplementationFactory,
|
|
841
|
+
hasherFactory,
|
|
842
|
+
isNgCompat,
|
|
843
|
+
};
|
|
844
|
+
}
|
|
845
|
+
catch (e) {
|
|
846
|
+
throw new Error(`Unable to resolve ${nodeModule}:${executor}.\n${e.message}`);
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
getImplementationFactory(implementation, executorsDir) {
|
|
850
|
+
return (0, schema_utils_1.getImplementationFactory)(implementation, executorsDir);
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
return new WrappedWorkspaceNodeModulesArchitectHost(workspace, root, projects);
|
|
854
|
+
}
|