@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,399 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Cache = exports.DbCache = void 0;
|
|
4
|
+
exports.dbCacheEnabled = dbCacheEnabled;
|
|
5
|
+
exports.getCache = getCache;
|
|
6
|
+
const workspace_root_1 = require("../utils/workspace-root");
|
|
7
|
+
const path_1 = require("path");
|
|
8
|
+
const perf_hooks_1 = require("perf_hooks");
|
|
9
|
+
const default_tasks_runner_1 = require("./default-tasks-runner");
|
|
10
|
+
const child_process_1 = require("child_process");
|
|
11
|
+
const node_fs_1 = require("node:fs");
|
|
12
|
+
const promises_1 = require("node:fs/promises");
|
|
13
|
+
const cache_directory_1 = require("../utils/cache-directory");
|
|
14
|
+
const node_machine_id_1 = require("node-machine-id");
|
|
15
|
+
const native_1 = require("../native");
|
|
16
|
+
const db_connection_1 = require("../utils/db-connection");
|
|
17
|
+
const nx_cloud_utils_1 = require("../utils/nx-cloud-utils");
|
|
18
|
+
const nx_json_1 = require("../config/nx-json");
|
|
19
|
+
const update_manager_1 = require("../nx-cloud/update-manager");
|
|
20
|
+
const get_cloud_options_1 = require("../nx-cloud/utilities/get-cloud-options");
|
|
21
|
+
const is_ci_1 = require("../utils/is-ci");
|
|
22
|
+
const output_1 = require("../utils/output");
|
|
23
|
+
function dbCacheEnabled(nxJson = (0, nx_json_1.readNxJson)()) {
|
|
24
|
+
return (process.env.NX_DISABLE_DB !== 'true' &&
|
|
25
|
+
(nxJson.enableDbCache === true || process.env.NX_DB_CACHE === 'true'));
|
|
26
|
+
}
|
|
27
|
+
// Do not change the order of these arguments as this function is used by nx cloud
|
|
28
|
+
function getCache(options) {
|
|
29
|
+
const nxJson = (0, nx_json_1.readNxJson)();
|
|
30
|
+
return dbCacheEnabled(nxJson)
|
|
31
|
+
? new DbCache({
|
|
32
|
+
// Remove this in Nx 21
|
|
33
|
+
nxCloudRemoteCache: (0, nx_cloud_utils_1.isNxCloudUsed)(nxJson) ? options.remoteCache : null,
|
|
34
|
+
})
|
|
35
|
+
: new Cache(options);
|
|
36
|
+
}
|
|
37
|
+
class DbCache {
|
|
38
|
+
constructor(options) {
|
|
39
|
+
this.options = options;
|
|
40
|
+
this.cache = new native_1.NxCache(workspace_root_1.workspaceRoot, cache_directory_1.cacheDir, (0, db_connection_1.getDbConnection)());
|
|
41
|
+
}
|
|
42
|
+
async init() {
|
|
43
|
+
// This should be cheap because we've already loaded
|
|
44
|
+
this.remoteCache = await this.getRemoteCache();
|
|
45
|
+
if (!this.remoteCache) {
|
|
46
|
+
this.assertCacheIsValid();
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
async get(task) {
|
|
50
|
+
const res = this.cache.get(task.hash);
|
|
51
|
+
if (res) {
|
|
52
|
+
return {
|
|
53
|
+
...res,
|
|
54
|
+
remote: false,
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
if (this.remoteCache) {
|
|
58
|
+
// didn't find it locally but we have a remote cache
|
|
59
|
+
// attempt remote cache
|
|
60
|
+
const res = await this.remoteCache.retrieve(task.hash, this.cache.cacheDirectory);
|
|
61
|
+
if (res) {
|
|
62
|
+
this.applyRemoteCacheResults(task.hash, res);
|
|
63
|
+
return {
|
|
64
|
+
...res,
|
|
65
|
+
remote: true,
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
else {
|
|
69
|
+
return null;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
return null;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
applyRemoteCacheResults(hash, res) {
|
|
77
|
+
return this.cache.applyRemoteCacheResults(hash, res);
|
|
78
|
+
}
|
|
79
|
+
async put(task, terminalOutput, outputs, code) {
|
|
80
|
+
return tryAndRetry(async () => {
|
|
81
|
+
this.cache.put(task.hash, terminalOutput, outputs, code);
|
|
82
|
+
if (this.remoteCache) {
|
|
83
|
+
await this.remoteCache.store(task.hash, this.cache.cacheDirectory, terminalOutput, code);
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
copyFilesFromCache(_, cachedResult, outputs) {
|
|
88
|
+
return tryAndRetry(async () => this.cache.copyFilesFromCache(cachedResult, outputs));
|
|
89
|
+
}
|
|
90
|
+
removeOldCacheRecords() {
|
|
91
|
+
return this.cache.removeOldCacheRecords();
|
|
92
|
+
}
|
|
93
|
+
temporaryOutputPath(task) {
|
|
94
|
+
return this.cache.getTaskOutputsPath(task.hash);
|
|
95
|
+
}
|
|
96
|
+
async getRemoteCache() {
|
|
97
|
+
if (this.remoteCachePromise) {
|
|
98
|
+
return this.remoteCachePromise;
|
|
99
|
+
}
|
|
100
|
+
this.remoteCachePromise = this._getRemoteCache();
|
|
101
|
+
return this.remoteCachePromise;
|
|
102
|
+
}
|
|
103
|
+
async _getRemoteCache() {
|
|
104
|
+
const nxJson = (0, nx_json_1.readNxJson)();
|
|
105
|
+
if ((0, nx_cloud_utils_1.isNxCloudUsed)(nxJson)) {
|
|
106
|
+
const options = (0, get_cloud_options_1.getCloudOptions)();
|
|
107
|
+
const { nxCloudClient } = await (0, update_manager_1.verifyOrUpdateNxCloudClient)(options);
|
|
108
|
+
if (nxCloudClient.getRemoteCache) {
|
|
109
|
+
return nxCloudClient.getRemoteCache();
|
|
110
|
+
}
|
|
111
|
+
else {
|
|
112
|
+
// old nx cloud instance
|
|
113
|
+
return await default_tasks_runner_1.RemoteCacheV2.fromCacheV1(this.options.nxCloudRemoteCache);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
else {
|
|
117
|
+
return ((await this.getPowerpackS3Cache()) ??
|
|
118
|
+
(await this.getPowerpackSharedCache()) ??
|
|
119
|
+
null);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
getPowerpackS3Cache() {
|
|
123
|
+
return this.getPowerpackCache('@nx/powerpack-s3-cache');
|
|
124
|
+
}
|
|
125
|
+
getPowerpackSharedCache() {
|
|
126
|
+
return this.getPowerpackCache('@nx/powerpack-shared-fs-cache');
|
|
127
|
+
}
|
|
128
|
+
async getPowerpackCache(pkg) {
|
|
129
|
+
let getRemoteCache = null;
|
|
130
|
+
try {
|
|
131
|
+
getRemoteCache = (await Promise.resolve(`${this.resolvePackage(pkg)}`).then(s => require(s))).getRemoteCache;
|
|
132
|
+
}
|
|
133
|
+
catch {
|
|
134
|
+
return null;
|
|
135
|
+
}
|
|
136
|
+
return getRemoteCache();
|
|
137
|
+
}
|
|
138
|
+
resolvePackage(pkg) {
|
|
139
|
+
return require.resolve(pkg, {
|
|
140
|
+
paths: [process.cwd(), workspace_root_1.workspaceRoot, __dirname],
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
assertCacheIsValid() {
|
|
144
|
+
// User has customized the cache directory - this could be because they
|
|
145
|
+
// are using a shared cache in the custom directory. The db cache is not
|
|
146
|
+
// stored in the cache directory, and is keyed by machine ID so they would
|
|
147
|
+
// hit issues. If we detect this, we can create a fallback db cache in the
|
|
148
|
+
// custom directory, and check if the entries are there when the main db
|
|
149
|
+
// cache misses.
|
|
150
|
+
if ((0, is_ci_1.isCI)() && !this.cache.checkCacheFsInSync()) {
|
|
151
|
+
const warningLines = [
|
|
152
|
+
`Nx found unrecognized artifacts in the cache directory and will not be able to use them.`,
|
|
153
|
+
`Nx can only restore artifacts it has metadata about.`,
|
|
154
|
+
`Read about this warning and how to address it here: https://nx.dev/troubleshooting/unknown-local-cache`,
|
|
155
|
+
``,
|
|
156
|
+
];
|
|
157
|
+
output_1.output.warn({
|
|
158
|
+
title: 'Unrecognized Cache Artifacts',
|
|
159
|
+
bodyLines: warningLines,
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
exports.DbCache = DbCache;
|
|
165
|
+
/**
|
|
166
|
+
* @deprecated Use the {@link DbCache} class instead. This will be removed in Nx 21.
|
|
167
|
+
*/
|
|
168
|
+
class Cache {
|
|
169
|
+
constructor(options) {
|
|
170
|
+
this.options = options;
|
|
171
|
+
this.root = workspace_root_1.workspaceRoot;
|
|
172
|
+
this.cachePath = this.createCacheDir();
|
|
173
|
+
this.terminalOutputsDir = this.createTerminalOutputsDir();
|
|
174
|
+
this._currentMachineId = null;
|
|
175
|
+
}
|
|
176
|
+
removeOldCacheRecords() {
|
|
177
|
+
/**
|
|
178
|
+
* Even though spawning a process is fast, we don't want to do it every time
|
|
179
|
+
* the user runs a command. Instead, we want to do it once in a while.
|
|
180
|
+
*/
|
|
181
|
+
const shouldSpawnProcess = Math.floor(Math.random() * 50) === 1;
|
|
182
|
+
if (shouldSpawnProcess) {
|
|
183
|
+
const scriptPath = require.resolve('./remove-old-cache-records.js');
|
|
184
|
+
try {
|
|
185
|
+
const p = (0, child_process_1.spawn)('node', [scriptPath, `${this.cachePath}`], {
|
|
186
|
+
stdio: 'ignore',
|
|
187
|
+
detached: true,
|
|
188
|
+
shell: false,
|
|
189
|
+
windowsHide: true,
|
|
190
|
+
});
|
|
191
|
+
p.unref();
|
|
192
|
+
}
|
|
193
|
+
catch (e) {
|
|
194
|
+
console.log(`Unable to start remove-old-cache-records script:`);
|
|
195
|
+
console.log(e.message);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
async currentMachineId() {
|
|
200
|
+
if (!this._currentMachineId) {
|
|
201
|
+
try {
|
|
202
|
+
this._currentMachineId = await (0, node_machine_id_1.machineId)();
|
|
203
|
+
}
|
|
204
|
+
catch (e) {
|
|
205
|
+
if (process.env.NX_VERBOSE_LOGGING === 'true') {
|
|
206
|
+
console.log(`Unable to get machineId. Error: ${e.message}`);
|
|
207
|
+
}
|
|
208
|
+
this._currentMachineId = '';
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
return this._currentMachineId;
|
|
212
|
+
}
|
|
213
|
+
async get(task) {
|
|
214
|
+
const res = await this.getFromLocalDir(task);
|
|
215
|
+
if (res) {
|
|
216
|
+
await this.assertLocalCacheValidity(task);
|
|
217
|
+
return { ...res, remote: false };
|
|
218
|
+
}
|
|
219
|
+
else if (this.options.remoteCache) {
|
|
220
|
+
// didn't find it locally but we have a remote cache
|
|
221
|
+
// attempt remote cache
|
|
222
|
+
await this.options.remoteCache.retrieve(task.hash, this.cachePath);
|
|
223
|
+
// try again from local cache
|
|
224
|
+
const res2 = await this.getFromLocalDir(task);
|
|
225
|
+
return res2 ? { ...res2, remote: true } : null;
|
|
226
|
+
}
|
|
227
|
+
else {
|
|
228
|
+
return null;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
async put(task, terminalOutput, outputs, code) {
|
|
232
|
+
return tryAndRetry(async () => {
|
|
233
|
+
/**
|
|
234
|
+
* This is the directory with the cached artifacts
|
|
235
|
+
*/
|
|
236
|
+
const td = (0, path_1.join)(this.cachePath, task.hash);
|
|
237
|
+
const tdCommit = (0, path_1.join)(this.cachePath, `${task.hash}.commit`);
|
|
238
|
+
// might be left overs from partially-completed cache invocations
|
|
239
|
+
await this.remove(tdCommit);
|
|
240
|
+
await this.remove(td);
|
|
241
|
+
await (0, promises_1.mkdir)(td, { recursive: true });
|
|
242
|
+
await (0, promises_1.writeFile)((0, path_1.join)(td, 'terminalOutput'), terminalOutput ?? 'no terminal output');
|
|
243
|
+
await (0, promises_1.mkdir)((0, path_1.join)(td, 'outputs'));
|
|
244
|
+
const expandedOutputs = await this.expandOutputsInWorkspace(outputs);
|
|
245
|
+
await Promise.all(expandedOutputs.map(async (f) => {
|
|
246
|
+
const src = (0, path_1.join)(this.root, f);
|
|
247
|
+
if ((0, node_fs_1.existsSync)(src)) {
|
|
248
|
+
const cached = (0, path_1.join)(td, 'outputs', f);
|
|
249
|
+
await this.copy(src, cached);
|
|
250
|
+
}
|
|
251
|
+
}));
|
|
252
|
+
// we need this file to account for partial writes to the cache folder.
|
|
253
|
+
// creating this file is atomic, whereas creating a folder is not.
|
|
254
|
+
// so if the process gets terminated while we are copying stuff into cache,
|
|
255
|
+
// the cache entry won't be used.
|
|
256
|
+
await (0, promises_1.writeFile)((0, path_1.join)(td, 'code'), code.toString());
|
|
257
|
+
await (0, promises_1.writeFile)((0, path_1.join)(td, 'source'), await this.currentMachineId());
|
|
258
|
+
await (0, promises_1.writeFile)(tdCommit, 'true');
|
|
259
|
+
if (this.options.remoteCache) {
|
|
260
|
+
await this.options.remoteCache.store(task.hash, this.cachePath);
|
|
261
|
+
}
|
|
262
|
+
if (terminalOutput) {
|
|
263
|
+
const outputPath = this.temporaryOutputPath(task);
|
|
264
|
+
await (0, promises_1.writeFile)(outputPath, terminalOutput);
|
|
265
|
+
}
|
|
266
|
+
});
|
|
267
|
+
}
|
|
268
|
+
async copyFilesFromCache(hash, cachedResult, outputs) {
|
|
269
|
+
return tryAndRetry(async () => {
|
|
270
|
+
const expandedOutputs = await this.expandOutputsInCache(outputs, cachedResult);
|
|
271
|
+
await Promise.all(expandedOutputs.map(async (f) => {
|
|
272
|
+
const cached = (0, path_1.join)(cachedResult.outputsPath, f);
|
|
273
|
+
if ((0, node_fs_1.existsSync)(cached)) {
|
|
274
|
+
const src = (0, path_1.join)(this.root, f);
|
|
275
|
+
await this.remove(src);
|
|
276
|
+
await this.copy(cached, src);
|
|
277
|
+
}
|
|
278
|
+
}));
|
|
279
|
+
});
|
|
280
|
+
}
|
|
281
|
+
temporaryOutputPath(task) {
|
|
282
|
+
return (0, path_1.join)(this.terminalOutputsDir, task.hash);
|
|
283
|
+
}
|
|
284
|
+
async expandOutputsInWorkspace(outputs) {
|
|
285
|
+
return this._expandOutputs(outputs, workspace_root_1.workspaceRoot);
|
|
286
|
+
}
|
|
287
|
+
async expandOutputsInCache(outputs, cachedResult) {
|
|
288
|
+
return this._expandOutputs(outputs, cachedResult.outputsPath);
|
|
289
|
+
}
|
|
290
|
+
async _expandOutputs(outputs, cwd) {
|
|
291
|
+
const { expandOutputs } = require('../native');
|
|
292
|
+
perf_hooks_1.performance.mark('expandOutputs:start');
|
|
293
|
+
const results = expandOutputs(cwd, outputs);
|
|
294
|
+
perf_hooks_1.performance.mark('expandOutputs:end');
|
|
295
|
+
perf_hooks_1.performance.measure('expandOutputs', 'expandOutputs:start', 'expandOutputs:end');
|
|
296
|
+
return results;
|
|
297
|
+
}
|
|
298
|
+
async copy(src, destination) {
|
|
299
|
+
const { copy } = require('../native');
|
|
300
|
+
// 'cp -a /path/dir/ dest/' operates differently to 'cp -a /path/dir dest/'
|
|
301
|
+
// --> which means actual build works but subsequent populate from cache (using cp -a) does not
|
|
302
|
+
// --> the fix is to remove trailing slashes to ensure consistent & expected behaviour
|
|
303
|
+
src = src.replace(/[\/\\]$/, '');
|
|
304
|
+
return new Promise((res, rej) => {
|
|
305
|
+
try {
|
|
306
|
+
copy(src, destination);
|
|
307
|
+
res();
|
|
308
|
+
}
|
|
309
|
+
catch (e) {
|
|
310
|
+
rej(e);
|
|
311
|
+
}
|
|
312
|
+
});
|
|
313
|
+
}
|
|
314
|
+
async remove(path) {
|
|
315
|
+
const { remove } = require('../native');
|
|
316
|
+
return new Promise((res, rej) => {
|
|
317
|
+
try {
|
|
318
|
+
remove(path);
|
|
319
|
+
res();
|
|
320
|
+
}
|
|
321
|
+
catch (e) {
|
|
322
|
+
rej(e);
|
|
323
|
+
}
|
|
324
|
+
});
|
|
325
|
+
}
|
|
326
|
+
async getFromLocalDir(task) {
|
|
327
|
+
const tdCommit = (0, path_1.join)(this.cachePath, `${task.hash}.commit`);
|
|
328
|
+
const td = (0, path_1.join)(this.cachePath, task.hash);
|
|
329
|
+
if ((0, node_fs_1.existsSync)(tdCommit)) {
|
|
330
|
+
const terminalOutput = await (0, promises_1.readFile)((0, path_1.join)(td, 'terminalOutput'), 'utf-8');
|
|
331
|
+
let code = 0;
|
|
332
|
+
try {
|
|
333
|
+
code = Number(await (0, promises_1.readFile)((0, path_1.join)(td, 'code'), 'utf-8'));
|
|
334
|
+
}
|
|
335
|
+
catch { }
|
|
336
|
+
return {
|
|
337
|
+
terminalOutput,
|
|
338
|
+
outputsPath: (0, path_1.join)(td, 'outputs'),
|
|
339
|
+
code,
|
|
340
|
+
};
|
|
341
|
+
}
|
|
342
|
+
else {
|
|
343
|
+
return null;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
async assertLocalCacheValidity(task) {
|
|
347
|
+
const td = (0, path_1.join)(this.cachePath, task.hash);
|
|
348
|
+
let sourceMachineId = null;
|
|
349
|
+
try {
|
|
350
|
+
sourceMachineId = await (0, promises_1.readFile)((0, path_1.join)(td, 'source'), 'utf-8');
|
|
351
|
+
}
|
|
352
|
+
catch { }
|
|
353
|
+
if (sourceMachineId && sourceMachineId != (await this.currentMachineId())) {
|
|
354
|
+
if (process.env.NX_REJECT_UNKNOWN_LOCAL_CACHE != '0' &&
|
|
355
|
+
process.env.NX_REJECT_UNKNOWN_LOCAL_CACHE != 'false') {
|
|
356
|
+
const error = [
|
|
357
|
+
`Invalid Cache Directory for Task "${task.id}"`,
|
|
358
|
+
`The local cache artifact in "${td}" was not generated on this machine.`,
|
|
359
|
+
`As a result, the cache's content integrity cannot be confirmed, which may make cache restoration potentially unsafe.`,
|
|
360
|
+
`If your machine ID has changed since the artifact was cached, run "nx reset" to fix this issue.`,
|
|
361
|
+
`Read about the error and how to address it here: https://nx.dev/troubleshooting/unknown-local-cache`,
|
|
362
|
+
``,
|
|
363
|
+
].join('\n');
|
|
364
|
+
throw new Error(error);
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
createCacheDir() {
|
|
369
|
+
(0, node_fs_1.mkdirSync)(cache_directory_1.cacheDir, { recursive: true });
|
|
370
|
+
return cache_directory_1.cacheDir;
|
|
371
|
+
}
|
|
372
|
+
createTerminalOutputsDir() {
|
|
373
|
+
const path = (0, path_1.join)(this.cachePath, 'terminalOutputs');
|
|
374
|
+
(0, node_fs_1.mkdirSync)(path, { recursive: true });
|
|
375
|
+
return path;
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
exports.Cache = Cache;
|
|
379
|
+
function tryAndRetry(fn) {
|
|
380
|
+
let attempts = 0;
|
|
381
|
+
// Generate a random number between 2 and 4 to raise to the power of attempts
|
|
382
|
+
const baseExponent = Math.random() * 2 + 2;
|
|
383
|
+
const _try = async () => {
|
|
384
|
+
try {
|
|
385
|
+
attempts++;
|
|
386
|
+
return await fn();
|
|
387
|
+
}
|
|
388
|
+
catch (e) {
|
|
389
|
+
// Max time is 5 * 4^3 = 20480ms
|
|
390
|
+
if (attempts === 6) {
|
|
391
|
+
// After enough attempts, throw the error
|
|
392
|
+
throw e;
|
|
393
|
+
}
|
|
394
|
+
await new Promise((res) => setTimeout(res, baseExponent ** attempts));
|
|
395
|
+
return await _try();
|
|
396
|
+
}
|
|
397
|
+
};
|
|
398
|
+
return _try();
|
|
399
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ProjectGraph, ProjectGraphProjectNode } from '../config/project-graph';
|
|
2
|
+
import { Task, TaskGraph } from '../config/task-graph';
|
|
3
|
+
import { TargetDefaults, TargetDependencies } from '../config/nx-json';
|
|
4
|
+
export declare class ProcessTasks {
|
|
5
|
+
private readonly extraTargetDependencies;
|
|
6
|
+
private readonly projectGraph;
|
|
7
|
+
private readonly seen;
|
|
8
|
+
readonly tasks: {
|
|
9
|
+
[id: string]: Task;
|
|
10
|
+
};
|
|
11
|
+
readonly dependencies: {
|
|
12
|
+
[k: string]: string[];
|
|
13
|
+
};
|
|
14
|
+
private readonly allTargetNames;
|
|
15
|
+
constructor(extraTargetDependencies: TargetDependencies, projectGraph: ProjectGraph);
|
|
16
|
+
processTasks(projectNames: string[], targets: string[], configuration: string, overrides: Object, excludeTaskDependencies: boolean): string[];
|
|
17
|
+
processTask(task: Task, projectUsedToDeriveDependencies: string, configuration: string, overrides: Object): void;
|
|
18
|
+
private processTasksForMultipleProjects;
|
|
19
|
+
private processTasksForSingleProject;
|
|
20
|
+
private processTasksForDependencies;
|
|
21
|
+
private createDummyTask;
|
|
22
|
+
createTask(id: string, project: ProjectGraphProjectNode, target: string, resolvedConfiguration: string | undefined, overrides: Object): Task;
|
|
23
|
+
resolveConfiguration(project: ProjectGraphProjectNode, target: string, configuration: string | undefined): string;
|
|
24
|
+
getId(project: string, target: string, configuration: string | undefined): string;
|
|
25
|
+
private filterDummyTasks;
|
|
26
|
+
}
|
|
27
|
+
export declare function createTaskGraph(projectGraph: ProjectGraph, extraTargetDependencies: TargetDependencies, projectNames: string[], targets: string[], configuration: string | undefined, overrides: Object, excludeTaskDependencies?: boolean): TaskGraph;
|
|
28
|
+
export declare function mapTargetDefaultsToDependencies(defaults: TargetDefaults | undefined): TargetDependencies;
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ProcessTasks = void 0;
|
|
4
|
+
exports.createTaskGraph = createTaskGraph;
|
|
5
|
+
exports.mapTargetDefaultsToDependencies = mapTargetDefaultsToDependencies;
|
|
6
|
+
const utils_1 = require("./utils");
|
|
7
|
+
const project_graph_utils_1 = require("../utils/project-graph-utils");
|
|
8
|
+
const output_1 = require("../utils/output");
|
|
9
|
+
const DUMMY_TASK_TARGET = '__nx_dummy_task__';
|
|
10
|
+
class ProcessTasks {
|
|
11
|
+
constructor(extraTargetDependencies, projectGraph) {
|
|
12
|
+
this.extraTargetDependencies = extraTargetDependencies;
|
|
13
|
+
this.projectGraph = projectGraph;
|
|
14
|
+
this.seen = new Set();
|
|
15
|
+
this.tasks = {};
|
|
16
|
+
this.dependencies = {};
|
|
17
|
+
const allTargetNames = new Set();
|
|
18
|
+
for (const projectName in projectGraph.nodes) {
|
|
19
|
+
const project = projectGraph.nodes[projectName];
|
|
20
|
+
for (const targetName in project.data.targets ?? {}) {
|
|
21
|
+
allTargetNames.add(targetName);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
this.allTargetNames = Array.from(allTargetNames);
|
|
25
|
+
}
|
|
26
|
+
processTasks(projectNames, targets, configuration, overrides, excludeTaskDependencies) {
|
|
27
|
+
for (const projectName of projectNames) {
|
|
28
|
+
for (const target of targets) {
|
|
29
|
+
const project = this.projectGraph.nodes[projectName];
|
|
30
|
+
if (targets.length === 1 || project.data.targets[target]) {
|
|
31
|
+
const resolvedConfiguration = this.resolveConfiguration(project, target, configuration);
|
|
32
|
+
const id = this.getId(projectName, target, resolvedConfiguration);
|
|
33
|
+
const task = this.createTask(id, project, target, resolvedConfiguration, overrides);
|
|
34
|
+
this.tasks[task.id] = task;
|
|
35
|
+
this.dependencies[task.id] = [];
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
// used when excluding tasks
|
|
40
|
+
const initialTasks = { ...this.tasks };
|
|
41
|
+
for (const taskId of Object.keys(this.tasks)) {
|
|
42
|
+
const task = this.tasks[taskId];
|
|
43
|
+
this.processTask(task, task.target.project, configuration, overrides);
|
|
44
|
+
}
|
|
45
|
+
if (excludeTaskDependencies) {
|
|
46
|
+
for (let t of Object.keys(this.tasks)) {
|
|
47
|
+
if (!initialTasks[t]) {
|
|
48
|
+
delete this.tasks[t];
|
|
49
|
+
delete this.dependencies[t];
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
for (let d of Object.keys(this.dependencies)) {
|
|
53
|
+
this.dependencies[d] = this.dependencies[d].filter((dd) => !!initialTasks[dd]);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
this.filterDummyTasks();
|
|
57
|
+
for (const taskId of Object.keys(this.dependencies)) {
|
|
58
|
+
if (this.dependencies[taskId].length > 0) {
|
|
59
|
+
this.dependencies[taskId] = [
|
|
60
|
+
...new Set(this.dependencies[taskId].filter((d) => d !== taskId)).values(),
|
|
61
|
+
];
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
return Object.keys(this.dependencies).filter((d) => this.dependencies[d].length === 0);
|
|
65
|
+
}
|
|
66
|
+
processTask(task, projectUsedToDeriveDependencies, configuration, overrides) {
|
|
67
|
+
const seenKey = `${task.id}-${projectUsedToDeriveDependencies}`;
|
|
68
|
+
if (this.seen.has(seenKey)) {
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
this.seen.add(seenKey);
|
|
72
|
+
const dependencyConfigs = (0, utils_1.getDependencyConfigs)({ project: task.target.project, target: task.target.target }, this.extraTargetDependencies, this.projectGraph, this.allTargetNames);
|
|
73
|
+
for (const dependencyConfig of dependencyConfigs) {
|
|
74
|
+
const taskOverrides = dependencyConfig.params === 'forward'
|
|
75
|
+
? overrides
|
|
76
|
+
: { __overrides_unparsed__: [] };
|
|
77
|
+
if (dependencyConfig.projects) {
|
|
78
|
+
this.processTasksForMultipleProjects(dependencyConfig, configuration, task, taskOverrides, overrides);
|
|
79
|
+
}
|
|
80
|
+
else if (dependencyConfig.dependencies) {
|
|
81
|
+
this.processTasksForDependencies(projectUsedToDeriveDependencies, dependencyConfig, configuration, task, taskOverrides, overrides);
|
|
82
|
+
}
|
|
83
|
+
else {
|
|
84
|
+
this.processTasksForSingleProject(task, task.target.project, dependencyConfig, configuration, taskOverrides, overrides);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
processTasksForMultipleProjects(dependencyConfig, configuration, task, taskOverrides, overrides) {
|
|
89
|
+
if (dependencyConfig.projects.length === 0) {
|
|
90
|
+
output_1.output.warn({
|
|
91
|
+
title: `\`dependsOn\` is misconfigured for ${task.target.project}:${task.target.target}`,
|
|
92
|
+
bodyLines: [
|
|
93
|
+
`Project patterns "${dependencyConfig.projects}" does not match any projects.`,
|
|
94
|
+
],
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
for (const projectName of dependencyConfig.projects) {
|
|
98
|
+
this.processTasksForSingleProject(task, projectName, dependencyConfig, configuration, taskOverrides, overrides);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
processTasksForSingleProject(task, projectName, dependencyConfig, configuration, taskOverrides, overrides) {
|
|
102
|
+
const selfProject = this.projectGraph.nodes[projectName];
|
|
103
|
+
if ((0, project_graph_utils_1.projectHasTarget)(selfProject, dependencyConfig.target)) {
|
|
104
|
+
const resolvedConfiguration = this.resolveConfiguration(selfProject, dependencyConfig.target, configuration);
|
|
105
|
+
const selfTaskId = this.getId(selfProject.name, dependencyConfig.target, resolvedConfiguration);
|
|
106
|
+
if (task.id !== selfTaskId) {
|
|
107
|
+
this.dependencies[task.id].push(selfTaskId);
|
|
108
|
+
}
|
|
109
|
+
if (!this.tasks[selfTaskId]) {
|
|
110
|
+
const newTask = this.createTask(selfTaskId, selfProject, dependencyConfig.target, resolvedConfiguration, taskOverrides);
|
|
111
|
+
this.tasks[selfTaskId] = newTask;
|
|
112
|
+
this.dependencies[selfTaskId] = [];
|
|
113
|
+
this.processTask(newTask, newTask.target.project, configuration, overrides);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
processTasksForDependencies(projectUsedToDeriveDependencies, dependencyConfig, configuration, task, taskOverrides, overrides) {
|
|
118
|
+
if (!this.projectGraph.dependencies.hasOwnProperty(projectUsedToDeriveDependencies)) {
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
for (const dep of this.projectGraph.dependencies[projectUsedToDeriveDependencies]) {
|
|
122
|
+
const depProject = this.projectGraph.nodes[dep.target];
|
|
123
|
+
// this is to handle external dependencies
|
|
124
|
+
if (!depProject)
|
|
125
|
+
continue;
|
|
126
|
+
if ((0, project_graph_utils_1.projectHasTarget)(depProject, dependencyConfig.target)) {
|
|
127
|
+
const resolvedConfiguration = this.resolveConfiguration(depProject, dependencyConfig.target, configuration);
|
|
128
|
+
const depTargetId = this.getId(depProject.name, dependencyConfig.target, resolvedConfiguration);
|
|
129
|
+
if (task.id !== depTargetId) {
|
|
130
|
+
this.dependencies[task.id].push(depTargetId);
|
|
131
|
+
}
|
|
132
|
+
if (!this.tasks[depTargetId]) {
|
|
133
|
+
const newTask = this.createTask(depTargetId, depProject, dependencyConfig.target, resolvedConfiguration, taskOverrides);
|
|
134
|
+
this.tasks[depTargetId] = newTask;
|
|
135
|
+
this.dependencies[depTargetId] = [];
|
|
136
|
+
this.processTask(newTask, newTask.target.project, configuration, overrides);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
else {
|
|
140
|
+
const dummyId = this.getId(depProject.name, DUMMY_TASK_TARGET, undefined);
|
|
141
|
+
this.dependencies[task.id].push(dummyId);
|
|
142
|
+
this.dependencies[dummyId] = [];
|
|
143
|
+
const noopTask = this.createDummyTask(dummyId, task);
|
|
144
|
+
this.processTask(noopTask, depProject.name, configuration, overrides);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
createDummyTask(id, task) {
|
|
149
|
+
return {
|
|
150
|
+
...task,
|
|
151
|
+
id,
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
createTask(id, project, target, resolvedConfiguration, overrides) {
|
|
155
|
+
if (!project.data.targets[target]) {
|
|
156
|
+
throw new Error(`Cannot find configuration for task ${project.name}:${target}`);
|
|
157
|
+
}
|
|
158
|
+
if (!project.data.targets[target].executor) {
|
|
159
|
+
throw new Error(`Target "${project.name}:${target}" does not have an executor configured`);
|
|
160
|
+
}
|
|
161
|
+
const qualifiedTarget = {
|
|
162
|
+
project: project.name,
|
|
163
|
+
target,
|
|
164
|
+
configuration: resolvedConfiguration,
|
|
165
|
+
};
|
|
166
|
+
const interpolatedOverrides = interpolateOverrides(overrides, project.name, project.data);
|
|
167
|
+
return {
|
|
168
|
+
id,
|
|
169
|
+
target: qualifiedTarget,
|
|
170
|
+
projectRoot: project.data.root,
|
|
171
|
+
overrides: interpolatedOverrides,
|
|
172
|
+
outputs: (0, utils_1.getOutputs)(this.projectGraph.nodes, qualifiedTarget, interpolatedOverrides),
|
|
173
|
+
cache: project.data.targets[target].cache,
|
|
174
|
+
parallelism: project.data.targets[target].parallelism ?? true,
|
|
175
|
+
};
|
|
176
|
+
}
|
|
177
|
+
resolveConfiguration(project, target, configuration) {
|
|
178
|
+
const defaultConfiguration = project.data.targets?.[target]?.defaultConfiguration;
|
|
179
|
+
configuration ??= defaultConfiguration;
|
|
180
|
+
return (0, project_graph_utils_1.projectHasTargetAndConfiguration)(project, target, configuration)
|
|
181
|
+
? configuration
|
|
182
|
+
: defaultConfiguration;
|
|
183
|
+
}
|
|
184
|
+
getId(project, target, configuration) {
|
|
185
|
+
let id = `${project}:${target}`;
|
|
186
|
+
if (configuration) {
|
|
187
|
+
id += `:${configuration}`;
|
|
188
|
+
}
|
|
189
|
+
return id;
|
|
190
|
+
}
|
|
191
|
+
filterDummyTasks() {
|
|
192
|
+
for (const [key, deps] of Object.entries(this.dependencies)) {
|
|
193
|
+
const normalizedDeps = [];
|
|
194
|
+
for (const dep of deps) {
|
|
195
|
+
if (dep.endsWith(DUMMY_TASK_TARGET)) {
|
|
196
|
+
normalizedDeps.push(...this.dependencies[dep].filter((d) => !d.endsWith(DUMMY_TASK_TARGET)));
|
|
197
|
+
}
|
|
198
|
+
else {
|
|
199
|
+
normalizedDeps.push(dep);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
this.dependencies[key] = normalizedDeps;
|
|
203
|
+
}
|
|
204
|
+
for (const key of Object.keys(this.dependencies)) {
|
|
205
|
+
if (key.endsWith(DUMMY_TASK_TARGET)) {
|
|
206
|
+
delete this.dependencies[key];
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
exports.ProcessTasks = ProcessTasks;
|
|
212
|
+
function createTaskGraph(projectGraph, extraTargetDependencies, projectNames, targets, configuration, overrides, excludeTaskDependencies = false) {
|
|
213
|
+
const p = new ProcessTasks(extraTargetDependencies, projectGraph);
|
|
214
|
+
const roots = p.processTasks(projectNames, targets, configuration, overrides, excludeTaskDependencies);
|
|
215
|
+
return {
|
|
216
|
+
roots,
|
|
217
|
+
tasks: p.tasks,
|
|
218
|
+
dependencies: p.dependencies,
|
|
219
|
+
};
|
|
220
|
+
}
|
|
221
|
+
function mapTargetDefaultsToDependencies(defaults) {
|
|
222
|
+
const res = {};
|
|
223
|
+
Object.keys(defaults ?? {}).forEach((k) => {
|
|
224
|
+
res[k] = defaults[k].dependsOn;
|
|
225
|
+
});
|
|
226
|
+
return res;
|
|
227
|
+
}
|
|
228
|
+
function interpolateOverrides(args, projectName, project) {
|
|
229
|
+
const interpolatedArgs = { ...args };
|
|
230
|
+
Object.entries(interpolatedArgs).forEach(([name, value]) => {
|
|
231
|
+
interpolatedArgs[name] =
|
|
232
|
+
typeof value === 'string'
|
|
233
|
+
? (0, utils_1.interpolate)(value, {
|
|
234
|
+
workspaceRoot: '',
|
|
235
|
+
projectRoot: project.root,
|
|
236
|
+
projectName: project.name,
|
|
237
|
+
project: { ...project, name: projectName }, // this is legacy
|
|
238
|
+
})
|
|
239
|
+
: value;
|
|
240
|
+
});
|
|
241
|
+
return interpolatedArgs;
|
|
242
|
+
}
|