@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,479 @@
|
|
|
1
|
+
import type { ChangelogRenderOptions } from '../../release/changelog-renderer';
|
|
2
|
+
import { PackageManager } from '../utils/package-manager';
|
|
3
|
+
import { InputDefinition, TargetConfiguration, TargetDependencyConfig } from './workspace-json-project-json';
|
|
4
|
+
export type ImplicitDependencyEntry<T = '*' | string[]> = {
|
|
5
|
+
[key: string]: T | ImplicitJsonSubsetDependency<T>;
|
|
6
|
+
};
|
|
7
|
+
export interface ImplicitJsonSubsetDependency<T = '*' | string[]> {
|
|
8
|
+
[key: string]: T | ImplicitJsonSubsetDependency<T>;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated Use {@link NxJsonConfiguration#defaultBase } instead
|
|
12
|
+
*/
|
|
13
|
+
export interface NxAffectedConfig {
|
|
14
|
+
/**
|
|
15
|
+
* Default based branch used by affected commands.
|
|
16
|
+
*/
|
|
17
|
+
defaultBase?: string;
|
|
18
|
+
}
|
|
19
|
+
export type TargetDefaults = Record<string, Partial<TargetConfiguration>>;
|
|
20
|
+
export type TargetDependencies = Record<string, (TargetDependencyConfig | string)[]>;
|
|
21
|
+
export interface NrwlJsPluginConfig {
|
|
22
|
+
analyzeSourceFiles?: boolean;
|
|
23
|
+
analyzePackageJson?: boolean;
|
|
24
|
+
analyzeLockfile?: boolean;
|
|
25
|
+
projectsAffectedByDependencyUpdates?: 'all' | 'auto' | string[];
|
|
26
|
+
}
|
|
27
|
+
interface NxInstallationConfiguration {
|
|
28
|
+
/**
|
|
29
|
+
* Version used for Nx
|
|
30
|
+
*/
|
|
31
|
+
version: string;
|
|
32
|
+
/**
|
|
33
|
+
* Record<pluginPackageName, pluginVersion>. e.g.
|
|
34
|
+
* plugins: { '@nx/angular': '1.0.0' }
|
|
35
|
+
*/
|
|
36
|
+
plugins?: Record<string, string>;
|
|
37
|
+
}
|
|
38
|
+
export interface NxReleaseVersionConfiguration {
|
|
39
|
+
generator?: string;
|
|
40
|
+
generatorOptions?: Record<string, unknown>;
|
|
41
|
+
/**
|
|
42
|
+
* Enabling support for parsing semver bumps via conventional commits and reading the current version from
|
|
43
|
+
* git tags is so common that we have a first class shorthand for it, which is false by default.
|
|
44
|
+
*
|
|
45
|
+
* Setting this to true is the same as adding the following to version.generatorOptions:
|
|
46
|
+
* - currentVersionResolver: "git-tag"
|
|
47
|
+
* - specifierSource: "conventional-commits"
|
|
48
|
+
*
|
|
49
|
+
* If the user attempts to mix and match these options with the shorthand, we will provide a helpful error.
|
|
50
|
+
*/
|
|
51
|
+
conventionalCommits?: boolean;
|
|
52
|
+
}
|
|
53
|
+
export interface NxReleaseChangelogConfiguration {
|
|
54
|
+
/**
|
|
55
|
+
* Optionally create a release containing all relevant changes on a supported version control system, it
|
|
56
|
+
* is false by default.
|
|
57
|
+
*
|
|
58
|
+
* NOTE: if createRelease is set on a group of projects, it will cause the default releaseTagPattern of
|
|
59
|
+
* "{projectName}@{version}" to be used for those projects, even when versioning everything together.
|
|
60
|
+
*/
|
|
61
|
+
createRelease?: false | 'github' | {
|
|
62
|
+
provider: 'github-enterprise-server';
|
|
63
|
+
hostname: string;
|
|
64
|
+
/**
|
|
65
|
+
* If not set, this will default to `https://${hostname}/api/v3`
|
|
66
|
+
*/
|
|
67
|
+
apiBaseUrl?: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* This can either be set to a string value that will be written to the changelog file(s)
|
|
71
|
+
* at the workspace root and/or within project directories, or set to `false` to specify
|
|
72
|
+
* that no changelog entry should be made when there are no code changes.
|
|
73
|
+
*
|
|
74
|
+
* NOTE: The string value has a sensible default value and supports interpolation of
|
|
75
|
+
* {projectName} when generating for project level changelogs.
|
|
76
|
+
*
|
|
77
|
+
* E.g. for a project level changelog you could customize the message to something like:
|
|
78
|
+
* "entryWhenNoChanges": "There were no code changes for {projectName}"
|
|
79
|
+
*/
|
|
80
|
+
entryWhenNoChanges?: string | false;
|
|
81
|
+
/**
|
|
82
|
+
* This is either a workspace path where the changelog markdown file will be created and read from,
|
|
83
|
+
* or set to false to disable file creation altogether (e.g. if only using Github releases).
|
|
84
|
+
*
|
|
85
|
+
* Interpolation of {projectName}, {projectRoot} and {workspaceRoot} is supported.
|
|
86
|
+
*
|
|
87
|
+
* The defaults are:
|
|
88
|
+
* - "{workspaceRoot}/CHANGELOG.md" at the workspace level
|
|
89
|
+
* - "{projectRoot}/CHANGELOG.md" at the project level
|
|
90
|
+
*/
|
|
91
|
+
file?: string | false;
|
|
92
|
+
/**
|
|
93
|
+
* A path to a valid changelog renderer function used to transform commit messages and other metadata into
|
|
94
|
+
* the final changelog (usually in markdown format). Its output can be modified using the optional `renderOptions`.
|
|
95
|
+
*
|
|
96
|
+
* By default, the renderer is set to "nx/release/changelog-renderer" which nx provides out of the box.
|
|
97
|
+
*/
|
|
98
|
+
renderer?: string;
|
|
99
|
+
renderOptions?: ChangelogRenderOptions;
|
|
100
|
+
}
|
|
101
|
+
export interface NxReleaseGitConfiguration {
|
|
102
|
+
/**
|
|
103
|
+
* Whether or not to automatically commit the changes made by current command
|
|
104
|
+
*/
|
|
105
|
+
commit?: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Custom git commit message to use when committing the changes made by this command {version} will be dynamically interpolated when performing fixed releases, interpolated tags will be appended to the commit body when performing independent releases.
|
|
108
|
+
*/
|
|
109
|
+
commitMessage?: string;
|
|
110
|
+
/**
|
|
111
|
+
* Additional arguments (added after the --message argument, which may or may not be customized with --git-commit-message) to pass to the `git commit` command invoked behind the scenes. May be a string or array of strings.
|
|
112
|
+
*/
|
|
113
|
+
commitArgs?: string | string[];
|
|
114
|
+
/**
|
|
115
|
+
* Whether or not to stage the changes made by this command. Always treated as true if commit is true.
|
|
116
|
+
*/
|
|
117
|
+
stageChanges?: boolean;
|
|
118
|
+
/**
|
|
119
|
+
* Whether or not to automatically tag the changes made by this command
|
|
120
|
+
*/
|
|
121
|
+
tag?: boolean;
|
|
122
|
+
/**
|
|
123
|
+
* Custom git tag message to use when tagging the changes made by this command. This defaults to be the same value as the tag itself.
|
|
124
|
+
*/
|
|
125
|
+
tagMessage?: string;
|
|
126
|
+
/**
|
|
127
|
+
* Additional arguments to pass to the `git tag` command invoked behind the scenes. . May be a string or array of strings.
|
|
128
|
+
*/
|
|
129
|
+
tagArgs?: string | string[];
|
|
130
|
+
}
|
|
131
|
+
export interface NxReleaseConventionalCommitsConfiguration {
|
|
132
|
+
types?: Record<string,
|
|
133
|
+
/**
|
|
134
|
+
* A map of commit types to their configuration.
|
|
135
|
+
* If a type is set to 'true', then it will be enabled with the default 'semverBump' of 'patch' and will appear in the changelog.
|
|
136
|
+
* If a type is set to 'false', then it will not trigger a version bump and will be hidden from the changelog.
|
|
137
|
+
*/
|
|
138
|
+
{
|
|
139
|
+
/**
|
|
140
|
+
* The semver bump to apply when a commit of this type is found.
|
|
141
|
+
* If set to "none", the commit will be ignored for versioning purposes.
|
|
142
|
+
*/
|
|
143
|
+
semverBump?: 'patch' | 'minor' | 'major' | 'none';
|
|
144
|
+
/**
|
|
145
|
+
* Configuration for the changelog section for commits of this type.
|
|
146
|
+
* If set to 'true', then commits of this type will be included in the changelog with their default title for the type.
|
|
147
|
+
* If set to 'false', then commits of this type will not be included in the changelog.
|
|
148
|
+
*/
|
|
149
|
+
changelog?: {
|
|
150
|
+
title?: string;
|
|
151
|
+
hidden?: boolean;
|
|
152
|
+
} | boolean;
|
|
153
|
+
} | boolean>;
|
|
154
|
+
}
|
|
155
|
+
export interface NxReleaseVersionPlansConfiguration {
|
|
156
|
+
/**
|
|
157
|
+
* Changes to files matching any of these optional patterns will be excluded from the affected project logic within the `nx release plan:check`
|
|
158
|
+
* command. This is useful for ignoring files that are not relevant to the versioning process, such as documentation or configuration files.
|
|
159
|
+
*/
|
|
160
|
+
ignorePatternsForPlanCheck?: string[];
|
|
161
|
+
}
|
|
162
|
+
export interface NxReleaseConfiguration {
|
|
163
|
+
/**
|
|
164
|
+
* Shorthand for amending the projects which will be included in the implicit default release group (all projects by default).
|
|
165
|
+
* @note Only one of `projects` or `groups` can be specified, the cannot be used together.
|
|
166
|
+
*/
|
|
167
|
+
projects?: string[] | string;
|
|
168
|
+
/**
|
|
169
|
+
* @note When no projects or groups are configured at all (the default), all projects in the workspace are treated as
|
|
170
|
+
* if they were in a release group together with a fixed relationship.
|
|
171
|
+
*/
|
|
172
|
+
groups?: Record<string, // group name
|
|
173
|
+
{
|
|
174
|
+
/**
|
|
175
|
+
* Whether to version and release projects within the group independently, or together in lock step ("fixed").
|
|
176
|
+
* If not set on the group, this will be informed by the projectsRelationship config at the top level.
|
|
177
|
+
*/
|
|
178
|
+
projectsRelationship?: 'fixed' | 'independent';
|
|
179
|
+
/**
|
|
180
|
+
* Required list of one or more projects to include in the release group. Any single project can
|
|
181
|
+
* only be used in a maximum of one release group.
|
|
182
|
+
*/
|
|
183
|
+
projects: string[] | string;
|
|
184
|
+
/**
|
|
185
|
+
* Optionally override version configuration for this group.
|
|
186
|
+
*
|
|
187
|
+
* NOTE: git configuration is not supported at the group level, only the root/command level
|
|
188
|
+
*/
|
|
189
|
+
version?: NxReleaseVersionConfiguration & {
|
|
190
|
+
/**
|
|
191
|
+
* A command to run after validation of nx release configuration, but before versioning begins.
|
|
192
|
+
* Used for preparing build artifacts. If --dry-run is passed, the command is still executed, but
|
|
193
|
+
* with the NX_DRY_RUN environment variable set to 'true'.
|
|
194
|
+
* It will run in addition to the global `preVersionCommand`
|
|
195
|
+
*/
|
|
196
|
+
groupPreVersionCommand?: string;
|
|
197
|
+
};
|
|
198
|
+
/**
|
|
199
|
+
* Project changelogs are disabled by default.
|
|
200
|
+
*
|
|
201
|
+
* Here you can optionally override project changelog configuration for this group.
|
|
202
|
+
* Notes about boolean values:
|
|
203
|
+
*
|
|
204
|
+
* - true = enable project level changelogs using default configuration
|
|
205
|
+
* - false = explicitly disable project level changelogs
|
|
206
|
+
*
|
|
207
|
+
* NOTE: git configuration is not supported at the group level, only the root/command level
|
|
208
|
+
*/
|
|
209
|
+
changelog?: NxReleaseChangelogConfiguration | boolean;
|
|
210
|
+
/**
|
|
211
|
+
* Optionally override the git/release tag pattern to use for this group.
|
|
212
|
+
*/
|
|
213
|
+
releaseTagPattern?: string;
|
|
214
|
+
/**
|
|
215
|
+
* Enables using version plans as a specifier source for versioning and
|
|
216
|
+
* to determine changes for changelog generation.
|
|
217
|
+
*/
|
|
218
|
+
versionPlans?: NxReleaseVersionPlansConfiguration | boolean;
|
|
219
|
+
}>;
|
|
220
|
+
/**
|
|
221
|
+
* Configures the default value for all groups that don't explicitly state their own projectsRelationship.
|
|
222
|
+
*
|
|
223
|
+
* By default, this is set to "fixed" which means all projects in the workspace will be versioned and
|
|
224
|
+
* released together in lock step.
|
|
225
|
+
*/
|
|
226
|
+
projectsRelationship?: 'fixed' | 'independent';
|
|
227
|
+
changelog?: {
|
|
228
|
+
/**
|
|
229
|
+
* Enable or override configuration for git operations as part of the changelog subcommand
|
|
230
|
+
*/
|
|
231
|
+
git?: NxReleaseGitConfiguration;
|
|
232
|
+
/**
|
|
233
|
+
* Workspace changelog is enabled by default. Notes about boolean values:
|
|
234
|
+
*
|
|
235
|
+
* - true = explicitly enable workspace changelog using default configuration
|
|
236
|
+
* - false = disable workspace changelog
|
|
237
|
+
*/
|
|
238
|
+
workspaceChangelog?: NxReleaseChangelogConfiguration | boolean;
|
|
239
|
+
/**
|
|
240
|
+
* Project changelogs are disabled by default. Notes about boolean values:
|
|
241
|
+
*
|
|
242
|
+
* - true = enable project level changelogs using default configuration
|
|
243
|
+
* - false = explicitly disable project level changelogs
|
|
244
|
+
*/
|
|
245
|
+
projectChangelogs?: NxReleaseChangelogConfiguration | boolean;
|
|
246
|
+
/**
|
|
247
|
+
* Whether or not to automatically look up the first commit for the workspace (or package, if versioning independently)
|
|
248
|
+
* and use that as the starting point for changelog generation. If this is not enabled, changelog generation will fail
|
|
249
|
+
* if there is no previous matching git tag to use as a starting point.
|
|
250
|
+
*/
|
|
251
|
+
automaticFromRef?: boolean;
|
|
252
|
+
};
|
|
253
|
+
/**
|
|
254
|
+
* If no version config is provided, we will assume that @nx/js:release-version
|
|
255
|
+
* is the desired generator implementation, allowing for terser config for the common case.
|
|
256
|
+
*/
|
|
257
|
+
version?: NxReleaseVersionConfiguration & {
|
|
258
|
+
/**
|
|
259
|
+
* Enable or override configuration for git operations as part of the version subcommand
|
|
260
|
+
*/
|
|
261
|
+
git?: NxReleaseGitConfiguration;
|
|
262
|
+
/**
|
|
263
|
+
* A command to run after validation of nx release configuration, but before versioning begins.
|
|
264
|
+
* Used for preparing build artifacts. If --dry-run is passed, the command is still executed, but
|
|
265
|
+
* with the NX_DRY_RUN environment variable set to 'true'.
|
|
266
|
+
*/
|
|
267
|
+
preVersionCommand?: string;
|
|
268
|
+
};
|
|
269
|
+
/**
|
|
270
|
+
* Optionally override the git/release tag pattern to use. This field is the source of truth
|
|
271
|
+
* for changelog generation and release tagging, as well as for conventional commits parsing.
|
|
272
|
+
*
|
|
273
|
+
* It supports interpolating the version as {version} and (if releasing independently or forcing
|
|
274
|
+
* project level version control system releases) the project name as {projectName} within the string.
|
|
275
|
+
*
|
|
276
|
+
* The default releaseTagPattern for fixed/unified releases is: "v{version}"
|
|
277
|
+
* The default releaseTagPattern for independent releases at the project level is: "{projectName}@{version}"
|
|
278
|
+
*/
|
|
279
|
+
releaseTagPattern?: string;
|
|
280
|
+
/**
|
|
281
|
+
* Enable and configure automatic git operations as part of the release
|
|
282
|
+
*/
|
|
283
|
+
git?: NxReleaseGitConfiguration;
|
|
284
|
+
conventionalCommits?: NxReleaseConventionalCommitsConfiguration;
|
|
285
|
+
/**
|
|
286
|
+
* Enables using version plans as a specifier source for versioning and
|
|
287
|
+
* to determine changes for changelog generation.
|
|
288
|
+
*/
|
|
289
|
+
versionPlans?: NxReleaseVersionPlansConfiguration | boolean;
|
|
290
|
+
}
|
|
291
|
+
export interface NxSyncConfiguration {
|
|
292
|
+
/**
|
|
293
|
+
* List of workspace-wide sync generators to be run (not attached to targets).
|
|
294
|
+
*/
|
|
295
|
+
globalGenerators?: string[];
|
|
296
|
+
/**
|
|
297
|
+
* Options for the sync generators.
|
|
298
|
+
*/
|
|
299
|
+
generatorOptions?: {
|
|
300
|
+
[generatorName: string]: Record<string, unknown>;
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* Whether to automatically apply sync generator changes when running tasks.
|
|
304
|
+
* If not set, the user will be prompted in interactive mode.
|
|
305
|
+
* If set to `true`, the user will not be prompted and the changes will be applied.
|
|
306
|
+
* If set to `false`, the user will not be prompted and the changes will not be applied.
|
|
307
|
+
*/
|
|
308
|
+
applyChanges?: boolean;
|
|
309
|
+
/**
|
|
310
|
+
* List of registered task sync generators to disable.
|
|
311
|
+
*/
|
|
312
|
+
disabledTaskSyncGenerators?: string[];
|
|
313
|
+
}
|
|
314
|
+
/**
|
|
315
|
+
* Nx.json configuration
|
|
316
|
+
*
|
|
317
|
+
* @note: when adding properties here add them to `allowedWorkspaceExtensions` in adapter/compat.ts
|
|
318
|
+
*/
|
|
319
|
+
export interface NxJsonConfiguration<T = '*' | string[]> {
|
|
320
|
+
/**
|
|
321
|
+
* Optional (additional) Nx.json configuration file which becomes a base for this one
|
|
322
|
+
*/
|
|
323
|
+
extends?: string;
|
|
324
|
+
/**
|
|
325
|
+
* Map of files to projects that implicitly depend on them
|
|
326
|
+
* @deprecated use {@link namedInputs} instead. For more information see https://nx.dev/deprecated/global-implicit-dependencies#global-implicit-dependencies
|
|
327
|
+
*/
|
|
328
|
+
implicitDependencies?: ImplicitDependencyEntry<T>;
|
|
329
|
+
/**
|
|
330
|
+
* Named inputs targets can refer to reduce duplication
|
|
331
|
+
*/
|
|
332
|
+
namedInputs?: {
|
|
333
|
+
[inputName: string]: (string | InputDefinition)[];
|
|
334
|
+
};
|
|
335
|
+
/**
|
|
336
|
+
* Dependencies between different target names across all projects
|
|
337
|
+
*/
|
|
338
|
+
targetDefaults?: TargetDefaults;
|
|
339
|
+
/**
|
|
340
|
+
* Default options for `nx affected`
|
|
341
|
+
* @deprecated use {@link defaultBase} instead. For more information see https://nx.dev/deprecated/affected-config#affected-config
|
|
342
|
+
*/
|
|
343
|
+
affected?: NxAffectedConfig;
|
|
344
|
+
/**
|
|
345
|
+
* Default value for --base used by `nx affected` and `nx format`.
|
|
346
|
+
*/
|
|
347
|
+
defaultBase?: string;
|
|
348
|
+
/**
|
|
349
|
+
* Where new apps + libs should be placed
|
|
350
|
+
*/
|
|
351
|
+
workspaceLayout?: {
|
|
352
|
+
libsDir?: string;
|
|
353
|
+
appsDir?: string;
|
|
354
|
+
};
|
|
355
|
+
/**
|
|
356
|
+
* Available Task Runners
|
|
357
|
+
*/
|
|
358
|
+
tasksRunnerOptions?: {
|
|
359
|
+
[tasksRunnerName: string]: {
|
|
360
|
+
/**
|
|
361
|
+
* Path to resolve the runner
|
|
362
|
+
*/
|
|
363
|
+
runner?: string;
|
|
364
|
+
/**
|
|
365
|
+
* Default options for the runner
|
|
366
|
+
*/
|
|
367
|
+
options?: any;
|
|
368
|
+
};
|
|
369
|
+
};
|
|
370
|
+
/**
|
|
371
|
+
* List of default values used by generators.
|
|
372
|
+
*
|
|
373
|
+
* These defaults are global. They are used when no other defaults are configured.
|
|
374
|
+
*
|
|
375
|
+
* Example:
|
|
376
|
+
*
|
|
377
|
+
* ```
|
|
378
|
+
* {
|
|
379
|
+
* "@nx/react": {
|
|
380
|
+
* "library": {
|
|
381
|
+
* "style": "scss"
|
|
382
|
+
* }
|
|
383
|
+
* }
|
|
384
|
+
* }
|
|
385
|
+
* ```
|
|
386
|
+
*/
|
|
387
|
+
generators?: {
|
|
388
|
+
[collectionName: string]: {
|
|
389
|
+
[generatorName: string]: any;
|
|
390
|
+
};
|
|
391
|
+
};
|
|
392
|
+
/**
|
|
393
|
+
* Default generator collection. It is used when no collection is provided.
|
|
394
|
+
*/
|
|
395
|
+
cli?: {
|
|
396
|
+
packageManager?: PackageManager;
|
|
397
|
+
defaultProjectName?: string;
|
|
398
|
+
};
|
|
399
|
+
/**
|
|
400
|
+
* Plugins for extending the project graph
|
|
401
|
+
*/
|
|
402
|
+
plugins?: PluginConfiguration[];
|
|
403
|
+
/**
|
|
404
|
+
* Configuration for Nx Plugins
|
|
405
|
+
*/
|
|
406
|
+
pluginsConfig?: Record<string, Record<string, unknown>>;
|
|
407
|
+
/**
|
|
408
|
+
* Default project. When project isn't provided, the default project
|
|
409
|
+
* will be used. Convenient for small workspaces with one main application.
|
|
410
|
+
*/
|
|
411
|
+
defaultProject?: string;
|
|
412
|
+
/**
|
|
413
|
+
* Configures the Nx installation for a repo. Useful for maintaining a separate
|
|
414
|
+
* set of dependencies for Nx + Plugins compared to the base package.json, but also
|
|
415
|
+
* useful for workspaces that don't have a root package.json + node_modules.
|
|
416
|
+
*/
|
|
417
|
+
installation?: NxInstallationConfiguration;
|
|
418
|
+
/**
|
|
419
|
+
* Configuration for `nx release` (versioning and publishing of applications and libraries)
|
|
420
|
+
*/
|
|
421
|
+
release?: NxReleaseConfiguration;
|
|
422
|
+
/**
|
|
423
|
+
* If specified Nx will use nx-cloud by default with the given token.
|
|
424
|
+
* To use a different runner that accepts an access token, define it in {@link tasksRunnerOptions}
|
|
425
|
+
*/
|
|
426
|
+
nxCloudAccessToken?: string;
|
|
427
|
+
/**
|
|
428
|
+
* If specified Nx will use nx-cloud by default with the given cloud id.
|
|
429
|
+
* To use a different runner that accepts a cloud id, define it in {@link tasksRunnerOptions}
|
|
430
|
+
*/
|
|
431
|
+
nxCloudId?: string;
|
|
432
|
+
/**
|
|
433
|
+
* Specifies the url pointing to an instance of nx cloud. Used for remote
|
|
434
|
+
* caching and displaying run links.
|
|
435
|
+
*/
|
|
436
|
+
nxCloudUrl?: string;
|
|
437
|
+
/**
|
|
438
|
+
* Specifies the encryption key used to encrypt artifacts data before sending it to nx cloud.
|
|
439
|
+
*/
|
|
440
|
+
nxCloudEncryptionKey?: string;
|
|
441
|
+
/**
|
|
442
|
+
* Specifies how many tasks can be run in parallel.
|
|
443
|
+
*/
|
|
444
|
+
parallel?: number;
|
|
445
|
+
/**
|
|
446
|
+
* Changes the directory used by Nx to store its cache.
|
|
447
|
+
*/
|
|
448
|
+
cacheDirectory?: string;
|
|
449
|
+
/**
|
|
450
|
+
* Set this to false to disable the daemon.
|
|
451
|
+
*/
|
|
452
|
+
useDaemonProcess?: boolean;
|
|
453
|
+
/**
|
|
454
|
+
* Set this to false to disable adding inference plugins when generating new projects
|
|
455
|
+
*/
|
|
456
|
+
useInferencePlugins?: boolean;
|
|
457
|
+
/**
|
|
458
|
+
* Set this to false to disable connection to Nx Cloud
|
|
459
|
+
*/
|
|
460
|
+
neverConnectToCloud?: boolean;
|
|
461
|
+
/**
|
|
462
|
+
* Configuration for the `nx sync` command.
|
|
463
|
+
*/
|
|
464
|
+
sync?: NxSyncConfiguration;
|
|
465
|
+
/**
|
|
466
|
+
* Enable the new experimental db based cache
|
|
467
|
+
*/
|
|
468
|
+
enableDbCache?: boolean;
|
|
469
|
+
}
|
|
470
|
+
export type PluginConfiguration = string | ExpandedPluginConfiguration;
|
|
471
|
+
export type ExpandedPluginConfiguration<T = unknown> = {
|
|
472
|
+
plugin: string;
|
|
473
|
+
options?: T;
|
|
474
|
+
include?: string[];
|
|
475
|
+
exclude?: string[];
|
|
476
|
+
};
|
|
477
|
+
export declare function readNxJson(root?: string): NxJsonConfiguration;
|
|
478
|
+
export declare function hasNxJson(root: string): boolean;
|
|
479
|
+
export {};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.readNxJson = readNxJson;
|
|
4
|
+
exports.hasNxJson = hasNxJson;
|
|
5
|
+
const fs_1 = require("fs");
|
|
6
|
+
const path_1 = require("path");
|
|
7
|
+
const fileutils_1 = require("../utils/fileutils");
|
|
8
|
+
const workspace_root_1 = require("../utils/workspace-root");
|
|
9
|
+
function readNxJson(root = workspace_root_1.workspaceRoot) {
|
|
10
|
+
const nxJson = (0, path_1.join)(root, 'nx.json');
|
|
11
|
+
if ((0, fs_1.existsSync)(nxJson)) {
|
|
12
|
+
const nxJsonConfiguration = (0, fileutils_1.readJsonFile)(nxJson);
|
|
13
|
+
if (nxJsonConfiguration.extends) {
|
|
14
|
+
const extendedNxJsonPath = require.resolve(nxJsonConfiguration.extends, {
|
|
15
|
+
paths: [(0, path_1.dirname)(nxJson)],
|
|
16
|
+
});
|
|
17
|
+
const baseNxJson = (0, fileutils_1.readJsonFile)(extendedNxJsonPath);
|
|
18
|
+
return {
|
|
19
|
+
...baseNxJson,
|
|
20
|
+
...nxJsonConfiguration,
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
return nxJsonConfiguration;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
else {
|
|
28
|
+
try {
|
|
29
|
+
return (0, fileutils_1.readJsonFile)((0, path_1.join)(__dirname, '..', '..', 'presets', 'core.json'));
|
|
30
|
+
}
|
|
31
|
+
catch (e) {
|
|
32
|
+
return {};
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
function hasNxJson(root) {
|
|
37
|
+
const nxJson = (0, path_1.join)(root, 'nx.json');
|
|
38
|
+
return (0, fs_1.existsSync)(nxJson);
|
|
39
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import type { ProjectConfiguration, ProjectsConfigurations, Workspace } from './workspace-json-project-json';
|
|
2
|
+
import { NxJsonConfiguration } from './nx-json';
|
|
3
|
+
/**
|
|
4
|
+
* Some metadata about a file
|
|
5
|
+
*/
|
|
6
|
+
export interface FileData {
|
|
7
|
+
file: string;
|
|
8
|
+
hash: string;
|
|
9
|
+
/**
|
|
10
|
+
* An array of dependencies. If an element is just a string,
|
|
11
|
+
* the dependency is assumed to be a static dependency targetting
|
|
12
|
+
* that string. If the element is a tuple with two elements, the first element
|
|
13
|
+
* inside of it is the target project, with the second element being the type of dependency.
|
|
14
|
+
* If the tuple has 3 elements, the first is preceded by a source.
|
|
15
|
+
*/
|
|
16
|
+
deps?: FileDataDependency[];
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* A file data dependency, as stored in the cache. If just a string,
|
|
20
|
+
* the dependency is assumed to be a static dependency targetting
|
|
21
|
+
* that string. If it is a tuple with two elements, the first element
|
|
22
|
+
* inside of it is the target project, with the second element being the type of dependency.
|
|
23
|
+
* If the tuple has 3 elements, the first is preceded by a source.
|
|
24
|
+
*/
|
|
25
|
+
export type FileDataDependency = string | [target: string, type: DependencyType] | [source: string, target: string, type: DependencyType];
|
|
26
|
+
export declare function fileDataDepTarget(dep: FileDataDependency): string;
|
|
27
|
+
export declare function fileDataDepType(dep: FileDataDependency): "static" | DependencyType;
|
|
28
|
+
export interface FileMap {
|
|
29
|
+
nonProjectFiles: FileData[];
|
|
30
|
+
projectFileMap: ProjectFileMap;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A list of files separated by the project they belong to
|
|
34
|
+
*/
|
|
35
|
+
export interface ProjectFileMap {
|
|
36
|
+
[projectName: string]: FileData[];
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* A Graph of projects in the workspace and dependencies between them
|
|
40
|
+
*/
|
|
41
|
+
export interface ProjectGraph {
|
|
42
|
+
nodes: Record<string, ProjectGraphProjectNode>;
|
|
43
|
+
externalNodes?: Record<string, ProjectGraphExternalNode>;
|
|
44
|
+
dependencies: Record<string, ProjectGraphDependency[]>;
|
|
45
|
+
version?: string;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Type of dependency between projects
|
|
49
|
+
*/
|
|
50
|
+
export declare enum DependencyType {
|
|
51
|
+
/**
|
|
52
|
+
* Static dependencies are tied to the loading of the module
|
|
53
|
+
*/
|
|
54
|
+
static = "static",
|
|
55
|
+
/**
|
|
56
|
+
* Dynamic dependencies are brought in by the module at run time
|
|
57
|
+
*/
|
|
58
|
+
dynamic = "dynamic",
|
|
59
|
+
/**
|
|
60
|
+
* Implicit dependencies are inferred
|
|
61
|
+
*/
|
|
62
|
+
implicit = "implicit"
|
|
63
|
+
}
|
|
64
|
+
/** @deprecated this type will be removed in v16. Use {@link ProjectGraphProjectNode} or {@link ProjectGraphExternalNode} instead */
|
|
65
|
+
export type ProjectGraphNode = ProjectGraphProjectNode | ProjectGraphExternalNode;
|
|
66
|
+
/**
|
|
67
|
+
* A node describing a project in a workspace
|
|
68
|
+
*/
|
|
69
|
+
export interface ProjectGraphProjectNode {
|
|
70
|
+
type: 'app' | 'e2e' | 'lib';
|
|
71
|
+
name: string;
|
|
72
|
+
/**
|
|
73
|
+
* Additional metadata about a project
|
|
74
|
+
*/
|
|
75
|
+
data: ProjectConfiguration & {
|
|
76
|
+
description?: string;
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* A node describing an external dependency
|
|
81
|
+
* `name` has as form of:
|
|
82
|
+
* - `npm:packageName` for root dependencies or
|
|
83
|
+
* - `npm:packageName@version` for nested transitive dependencies
|
|
84
|
+
*
|
|
85
|
+
* This is vital for our node discovery to always point to root dependencies,
|
|
86
|
+
* while allowing tracking of the full tree of different nested versions
|
|
87
|
+
*
|
|
88
|
+
*/
|
|
89
|
+
export interface ProjectGraphExternalNode {
|
|
90
|
+
type: 'npm';
|
|
91
|
+
name: `npm:${string}`;
|
|
92
|
+
data: {
|
|
93
|
+
version: string;
|
|
94
|
+
packageName: string;
|
|
95
|
+
hash?: string;
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* A dependency between two projects
|
|
100
|
+
*/
|
|
101
|
+
export interface ProjectGraphDependency {
|
|
102
|
+
type: DependencyType | string;
|
|
103
|
+
/**
|
|
104
|
+
* The project being imported by the other
|
|
105
|
+
*/
|
|
106
|
+
target: string;
|
|
107
|
+
/**
|
|
108
|
+
* The project importing the other
|
|
109
|
+
*/
|
|
110
|
+
source: string;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Additional information to be used to process a project graph
|
|
114
|
+
* @deprecated The {@link ProjectGraphProcessor} is deprecated. This will be removed in Nx 20.
|
|
115
|
+
*/
|
|
116
|
+
export interface ProjectGraphProcessorContext {
|
|
117
|
+
/**
|
|
118
|
+
* Workspace information such as projects and configuration
|
|
119
|
+
* @deprecated use {@link projectsConfigurations} or {@link nxJsonConfiguration} instead
|
|
120
|
+
*/
|
|
121
|
+
workspace: Workspace;
|
|
122
|
+
projectsConfigurations: ProjectsConfigurations;
|
|
123
|
+
nxJsonConfiguration: NxJsonConfiguration;
|
|
124
|
+
/**
|
|
125
|
+
* All files in the workspace
|
|
126
|
+
*/
|
|
127
|
+
fileMap: ProjectFileMap;
|
|
128
|
+
/**
|
|
129
|
+
* Files changes since last invocation
|
|
130
|
+
*/
|
|
131
|
+
filesToProcess: ProjectFileMap;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* A function that produces an updated ProjectGraph
|
|
135
|
+
* @deprecated Use {@link CreateNodes} and {@link CreateDependencies} instead. This will be removed in Nx 20.
|
|
136
|
+
*/
|
|
137
|
+
export type ProjectGraphProcessor = (currentGraph: ProjectGraph, context: ProjectGraphProcessorContext) => ProjectGraph | Promise<ProjectGraph>;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DependencyType = void 0;
|
|
4
|
+
exports.fileDataDepTarget = fileDataDepTarget;
|
|
5
|
+
exports.fileDataDepType = fileDataDepType;
|
|
6
|
+
function fileDataDepTarget(dep) {
|
|
7
|
+
return typeof dep === 'string'
|
|
8
|
+
? dep
|
|
9
|
+
: Array.isArray(dep) && dep.length === 2
|
|
10
|
+
? dep[0]
|
|
11
|
+
: dep[1];
|
|
12
|
+
}
|
|
13
|
+
function fileDataDepType(dep) {
|
|
14
|
+
return typeof dep === 'string'
|
|
15
|
+
? 'static'
|
|
16
|
+
: Array.isArray(dep) && dep.length === 2
|
|
17
|
+
? dep[1]
|
|
18
|
+
: dep[2];
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Type of dependency between projects
|
|
22
|
+
*/
|
|
23
|
+
var DependencyType;
|
|
24
|
+
(function (DependencyType) {
|
|
25
|
+
/**
|
|
26
|
+
* Static dependencies are tied to the loading of the module
|
|
27
|
+
*/
|
|
28
|
+
DependencyType["static"] = "static";
|
|
29
|
+
/**
|
|
30
|
+
* Dynamic dependencies are brought in by the module at run time
|
|
31
|
+
*/
|
|
32
|
+
DependencyType["dynamic"] = "dynamic";
|
|
33
|
+
/**
|
|
34
|
+
* Implicit dependencies are inferred
|
|
35
|
+
*/
|
|
36
|
+
DependencyType["implicit"] = "implicit";
|
|
37
|
+
})(DependencyType || (exports.DependencyType = DependencyType = {}));
|