@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,819 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
|
+
"$id": "https://nx.dev/reference/nx-json",
|
|
4
|
+
"title": "JSON schema for Nx configuration",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"implicitDependencies": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"description": "Map of files to projects that implicitly depend on them.",
|
|
10
|
+
"deprecated": "Use named inputs instead. See https://nx.dev/deprecated/global-implicit-dependencies"
|
|
11
|
+
},
|
|
12
|
+
"affected": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"description": "Default options for `nx affected`.",
|
|
15
|
+
"properties": {
|
|
16
|
+
"defaultBase": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "Default based branch used by affected commands."
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"additionalProperties": false,
|
|
22
|
+
"deprecated": "Use `defaultBase` instead. Support for setting `defaultBase` in `affected` will be removed in Nx 20."
|
|
23
|
+
},
|
|
24
|
+
"defaultBase": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"description": "Default --base used by affected logic."
|
|
27
|
+
},
|
|
28
|
+
"tasksRunnerOptions": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"additionalProperties": {
|
|
31
|
+
"$ref": "#/definitions/tasksRunnerOptions"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"namedInputs": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"description": "Named inputs used by inputs defined in targets",
|
|
37
|
+
"additionalProperties": {
|
|
38
|
+
"$ref": "#/definitions/inputs"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"targetDefaults": {
|
|
42
|
+
"type": "object",
|
|
43
|
+
"description": "Target defaults",
|
|
44
|
+
"additionalProperties": {
|
|
45
|
+
"$ref": "#/definitions/targetDefaultsConfig"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"workspaceLayout": {
|
|
49
|
+
"type": "object",
|
|
50
|
+
"description": "Where new apps + libs should be placed.",
|
|
51
|
+
"properties": {
|
|
52
|
+
"libsDir": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"description": "Default folder name for libs."
|
|
55
|
+
},
|
|
56
|
+
"appsDir": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"description": "Default folder name for apps."
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"additionalProperties": false
|
|
62
|
+
},
|
|
63
|
+
"cli": {
|
|
64
|
+
"$ref": "#/definitions/cliOptions"
|
|
65
|
+
},
|
|
66
|
+
"generators": {
|
|
67
|
+
"$ref": "#/definitions/generatorOptions"
|
|
68
|
+
},
|
|
69
|
+
"plugins": {
|
|
70
|
+
"type": "array",
|
|
71
|
+
"description": "Plugins for extending the project graph.",
|
|
72
|
+
"items": {
|
|
73
|
+
"$ref": "#/definitions/plugins"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"defaultProject": {
|
|
77
|
+
"type": "string",
|
|
78
|
+
"description": "Default project. When project isn't provided, the default project will be used."
|
|
79
|
+
},
|
|
80
|
+
"nxCloudAccessToken": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"description": "The access token to use for nx-cloud. If set, the default tasks runner will be nx-cloud."
|
|
83
|
+
},
|
|
84
|
+
"nxCloudUrl": {
|
|
85
|
+
"type": "string",
|
|
86
|
+
"description": "Specifies the url pointing to an instance of nx cloud. Used for remote caching and displaying run links."
|
|
87
|
+
},
|
|
88
|
+
"nxCloudEncryptionKey": {
|
|
89
|
+
"type": "string",
|
|
90
|
+
"description": "Specifies the encryption key used to encrypt artifacts data before sending it to nx cloud."
|
|
91
|
+
},
|
|
92
|
+
"parallel": {
|
|
93
|
+
"type": "number",
|
|
94
|
+
"description": "Specifies how many tasks are ran in parallel by Nx for the default tasks runner."
|
|
95
|
+
},
|
|
96
|
+
"cacheDirectory": {
|
|
97
|
+
"type": "string",
|
|
98
|
+
"description": "Specifies the default location of the cache directory."
|
|
99
|
+
},
|
|
100
|
+
"useDaemonProcess": {
|
|
101
|
+
"type": "boolean",
|
|
102
|
+
"description": "Specifies whether the daemon should be used for the default tasks runner."
|
|
103
|
+
},
|
|
104
|
+
"useInferencePlugins": {
|
|
105
|
+
"type": "boolean",
|
|
106
|
+
"description": "Specifies whether to add inference plugins when generating new projects."
|
|
107
|
+
},
|
|
108
|
+
"release": {
|
|
109
|
+
"type": "object",
|
|
110
|
+
"description": "Configuration for the nx release commands.",
|
|
111
|
+
"additionalProperties": false,
|
|
112
|
+
"properties": {
|
|
113
|
+
"projects": {
|
|
114
|
+
"oneOf": [
|
|
115
|
+
{
|
|
116
|
+
"type": "string",
|
|
117
|
+
"description": "A project name"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"type": "array",
|
|
121
|
+
"description": "An array of project names",
|
|
122
|
+
"minItems": 1,
|
|
123
|
+
"items": {
|
|
124
|
+
"type": "string"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
"groups": {
|
|
130
|
+
"type": "object",
|
|
131
|
+
"additionalProperties": {
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"projectsRelationship": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"enum": ["fixed", "independent"]
|
|
137
|
+
},
|
|
138
|
+
"projects": {
|
|
139
|
+
"oneOf": [
|
|
140
|
+
{
|
|
141
|
+
"type": "string",
|
|
142
|
+
"description": "A project name"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"type": "array",
|
|
146
|
+
"description": "An array of project names",
|
|
147
|
+
"minItems": 1,
|
|
148
|
+
"items": {
|
|
149
|
+
"type": "string"
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
"version": {
|
|
155
|
+
"$ref": "#/definitions/NxReleaseGroupVersionConfiguration"
|
|
156
|
+
},
|
|
157
|
+
"changelog": {
|
|
158
|
+
"oneOf": [
|
|
159
|
+
{
|
|
160
|
+
"$ref": "#/definitions/NxReleaseChangelogConfiguration"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"type": "boolean"
|
|
164
|
+
}
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
"releaseTagPattern": {
|
|
168
|
+
"type": "string"
|
|
169
|
+
},
|
|
170
|
+
"versionPlans": {
|
|
171
|
+
"oneOf": [
|
|
172
|
+
{
|
|
173
|
+
"$ref": "#/definitions/NxReleaseVersionPlansConfiguration"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"type": "boolean",
|
|
177
|
+
"description": "Enables using version plans as a specifier source for versioning and to determine changes for changelog generation."
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"required": ["projects"]
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"changelog": {
|
|
186
|
+
"type": "object",
|
|
187
|
+
"properties": {
|
|
188
|
+
"workspaceChangelog": {
|
|
189
|
+
"oneOf": [
|
|
190
|
+
{
|
|
191
|
+
"$ref": "#/definitions/NxReleaseChangelogConfiguration"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "boolean"
|
|
195
|
+
}
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
"projectChangelogs": {
|
|
199
|
+
"oneOf": [
|
|
200
|
+
{
|
|
201
|
+
"$ref": "#/definitions/NxReleaseChangelogConfiguration"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"type": "boolean"
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
},
|
|
208
|
+
"automaticFromRef": {
|
|
209
|
+
"type": "boolean",
|
|
210
|
+
"description": "Whether or not to automatically look up the first commit for the workspace (or package, if versioning independently) and use that as the starting point for changelog generation. If this is not enabled, changelog generation will fail if there is no previous matching git tag to use as a starting point."
|
|
211
|
+
},
|
|
212
|
+
"git": {
|
|
213
|
+
"$ref": "#/definitions/NxReleaseGitConfiguration"
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"conventionalCommits": {
|
|
218
|
+
"$ref": "#/definitions/NxReleaseConventionalCommitsConfiguration"
|
|
219
|
+
},
|
|
220
|
+
"projectsRelationship": {
|
|
221
|
+
"type": "string",
|
|
222
|
+
"enum": ["fixed", "independent"]
|
|
223
|
+
},
|
|
224
|
+
"git": {
|
|
225
|
+
"$ref": "#/definitions/NxReleaseGitConfiguration"
|
|
226
|
+
},
|
|
227
|
+
"version": {
|
|
228
|
+
"$ref": "#/definitions/NxReleaseVersionConfiguration"
|
|
229
|
+
},
|
|
230
|
+
"versionPlans": {
|
|
231
|
+
"oneOf": [
|
|
232
|
+
{
|
|
233
|
+
"$ref": "#/definitions/NxReleaseVersionPlansConfiguration"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "boolean",
|
|
237
|
+
"description": "Enables using version plans as a specifier source for versioning and to determine changes for changelog generation."
|
|
238
|
+
}
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
"releaseTagPattern": {
|
|
242
|
+
"type": "string"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"sync": {
|
|
247
|
+
"type": "object",
|
|
248
|
+
"description": "Configuration for the `nx sync` command",
|
|
249
|
+
"properties": {
|
|
250
|
+
"globalGenerators": {
|
|
251
|
+
"type": "array",
|
|
252
|
+
"items": {
|
|
253
|
+
"type": "string"
|
|
254
|
+
},
|
|
255
|
+
"description": "List of workspace-wide sync generators to be run (not attached to targets)"
|
|
256
|
+
},
|
|
257
|
+
"generatorOptions": {
|
|
258
|
+
"type": "object",
|
|
259
|
+
"description": "Options for the sync generators.",
|
|
260
|
+
"additionalProperties": {
|
|
261
|
+
"type": "object"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"applyChanges": {
|
|
265
|
+
"type": "boolean",
|
|
266
|
+
"description": "Whether to automatically apply sync generator changes when running tasks. If not set, the user will be prompted. If set to `true`, the user will not be prompted and the changes will be applied. If set to `false`, the user will not be prompted and the changes will not be applied."
|
|
267
|
+
},
|
|
268
|
+
"disabledTaskSyncGenerators": {
|
|
269
|
+
"type": "array",
|
|
270
|
+
"items": {
|
|
271
|
+
"type": "string"
|
|
272
|
+
},
|
|
273
|
+
"description": "List of registered task sync generators to disable."
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"additionalProperties": false
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"definitions": {
|
|
280
|
+
"inputs": {
|
|
281
|
+
"type": "array",
|
|
282
|
+
"items": {
|
|
283
|
+
"oneOf": [
|
|
284
|
+
{
|
|
285
|
+
"type": "string"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"type": "object",
|
|
289
|
+
"properties": {
|
|
290
|
+
"fileset": {
|
|
291
|
+
"type": "string",
|
|
292
|
+
"description": "A glob"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"additionalProperties": false
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"type": "object",
|
|
299
|
+
"properties": {
|
|
300
|
+
"projects": {
|
|
301
|
+
"oneOf": [
|
|
302
|
+
{
|
|
303
|
+
"type": "string",
|
|
304
|
+
"description": "The project that the targets belong to."
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"type": "array",
|
|
308
|
+
"description": "The projects that the targets belong to.",
|
|
309
|
+
"items": {
|
|
310
|
+
"type": "string"
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
]
|
|
314
|
+
},
|
|
315
|
+
"dependencies": {
|
|
316
|
+
"type": "boolean",
|
|
317
|
+
"description": "Include files belonging to the input for all the project dependencies of this target."
|
|
318
|
+
},
|
|
319
|
+
"input": {
|
|
320
|
+
"type": "string",
|
|
321
|
+
"description": "The name of the input."
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"oneOf": [
|
|
325
|
+
{
|
|
326
|
+
"required": ["projects", "input"]
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"required": ["dependencies", "input"]
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"required": ["input"],
|
|
333
|
+
"not": {
|
|
334
|
+
"anyOf": [
|
|
335
|
+
{
|
|
336
|
+
"required": ["projects"]
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"required": ["dependencies"]
|
|
340
|
+
}
|
|
341
|
+
]
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"additionalProperties": false
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"type": "object",
|
|
349
|
+
"properties": {
|
|
350
|
+
"runtime": {
|
|
351
|
+
"type": "string",
|
|
352
|
+
"description": "The command that will be executed and the results of which is added to the hash"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"additionalProperties": false
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"type": "object",
|
|
359
|
+
"properties": {
|
|
360
|
+
"env": {
|
|
361
|
+
"type": "string",
|
|
362
|
+
"description": "The name of the env var which value is added to the hash"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"additionalProperties": false
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"type": "object",
|
|
369
|
+
"properties": {
|
|
370
|
+
"externalDependencies": {
|
|
371
|
+
"type": "array",
|
|
372
|
+
"items": {
|
|
373
|
+
"type": "string"
|
|
374
|
+
},
|
|
375
|
+
"description": "The list of external dependencies that our target depends on for `nx:run-commands` and community plugins."
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"additionalProperties": false
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"type": "object",
|
|
382
|
+
"properties": {
|
|
383
|
+
"dependentTasksOutputFiles": {
|
|
384
|
+
"type": "string",
|
|
385
|
+
"description": "The glob list of output files that project depends on."
|
|
386
|
+
},
|
|
387
|
+
"transitive": {
|
|
388
|
+
"type": "boolean",
|
|
389
|
+
"description": "Whether the check for outputs should be recursive or stop at the first level of dependencies."
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"required": ["dependentTasksOutputFiles"],
|
|
393
|
+
"additionalProperties": false
|
|
394
|
+
}
|
|
395
|
+
]
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"cliOptions": {
|
|
399
|
+
"type": "object",
|
|
400
|
+
"description": "Default generator collection.",
|
|
401
|
+
"properties": {
|
|
402
|
+
"packageManager": {
|
|
403
|
+
"type": "string",
|
|
404
|
+
"description": "The default package manager to use.",
|
|
405
|
+
"enum": ["yarn", "pnpm", "npm", "bun"]
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"generatorOptions": {
|
|
410
|
+
"type": "object",
|
|
411
|
+
"description": "List of default values used by generators."
|
|
412
|
+
},
|
|
413
|
+
"tasksRunnerOptions": {
|
|
414
|
+
"type": "object",
|
|
415
|
+
"description": "Available Task Runners.",
|
|
416
|
+
"properties": {
|
|
417
|
+
"runner": {
|
|
418
|
+
"type": "string",
|
|
419
|
+
"description": "Path to resolve the runner."
|
|
420
|
+
},
|
|
421
|
+
"options": {
|
|
422
|
+
"type": "object",
|
|
423
|
+
"description": "Default options for the runner.",
|
|
424
|
+
"properties": {
|
|
425
|
+
"accessToken": {
|
|
426
|
+
"type": "string"
|
|
427
|
+
},
|
|
428
|
+
"nxCloudId": {
|
|
429
|
+
"type": "string"
|
|
430
|
+
},
|
|
431
|
+
"captureStderr": {
|
|
432
|
+
"type": "boolean",
|
|
433
|
+
"description": "Defines whether the cache captures stderr or just stdout."
|
|
434
|
+
},
|
|
435
|
+
"parallel": {
|
|
436
|
+
"type": "number",
|
|
437
|
+
"description": "Defines the max number of targets ran in parallel."
|
|
438
|
+
},
|
|
439
|
+
"cacheableOperations": {
|
|
440
|
+
"type": "array",
|
|
441
|
+
"description": "Defines the list of targets/operations that are cached by Nx.",
|
|
442
|
+
"items": {
|
|
443
|
+
"type": "string"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"cacheDirectory": {
|
|
447
|
+
"type": "string",
|
|
448
|
+
"description": "Defines where the local cache is stored."
|
|
449
|
+
},
|
|
450
|
+
"skipNxCache": {
|
|
451
|
+
"type": "boolean",
|
|
452
|
+
"description": "Defines whether the Nx Cache should be skipped."
|
|
453
|
+
},
|
|
454
|
+
"encryptionKey": {
|
|
455
|
+
"type": "string",
|
|
456
|
+
"description": "Defines an encryption key to support end-to-end encryption of your cloud cache. You may also provide an environment variable with the key NX_CLOUD_ENCRYPTION_KEY that contains an encryption key as its value. The Nx Cloud task runner normalizes the key length, so any length of key is acceptable."
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"additionalProperties": false
|
|
462
|
+
},
|
|
463
|
+
"targetDefaultsConfig": {
|
|
464
|
+
"type": "object",
|
|
465
|
+
"description": "Target defaults",
|
|
466
|
+
"properties": {
|
|
467
|
+
"executor": {
|
|
468
|
+
"description": "The function that Nx will invoke when you run this target",
|
|
469
|
+
"type": "string"
|
|
470
|
+
},
|
|
471
|
+
"options": {
|
|
472
|
+
"type": "object"
|
|
473
|
+
},
|
|
474
|
+
"outputs": {
|
|
475
|
+
"type": "array",
|
|
476
|
+
"items": {
|
|
477
|
+
"type": "string"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
"defaultConfiguration": {
|
|
481
|
+
"type": "string",
|
|
482
|
+
"description": "The name of a configuration to use as the default if a configuration is not provided"
|
|
483
|
+
},
|
|
484
|
+
"configurations": {
|
|
485
|
+
"type": "object",
|
|
486
|
+
"description": "provides extra sets of values that will be merged into the options map",
|
|
487
|
+
"additionalProperties": {
|
|
488
|
+
"type": "object"
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"parallelism": {
|
|
492
|
+
"type": "boolean",
|
|
493
|
+
"default": true,
|
|
494
|
+
"description": "Whether this target can be run in parallel with other tasks"
|
|
495
|
+
},
|
|
496
|
+
"inputs": {
|
|
497
|
+
"$ref": "#/definitions/inputs"
|
|
498
|
+
},
|
|
499
|
+
"dependsOn": {
|
|
500
|
+
"type": "array",
|
|
501
|
+
"items": {
|
|
502
|
+
"oneOf": [
|
|
503
|
+
{
|
|
504
|
+
"type": "string"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"type": "object",
|
|
508
|
+
"properties": {
|
|
509
|
+
"projects": {
|
|
510
|
+
"oneOf": [
|
|
511
|
+
{
|
|
512
|
+
"type": "string",
|
|
513
|
+
"description": "A project name"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"type": "array",
|
|
517
|
+
"description": "An array of project names",
|
|
518
|
+
"minItems": 1,
|
|
519
|
+
"items": {
|
|
520
|
+
"type": "string"
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
]
|
|
524
|
+
},
|
|
525
|
+
"dependencies": {
|
|
526
|
+
"type": "boolean"
|
|
527
|
+
},
|
|
528
|
+
"target": {
|
|
529
|
+
"type": "string",
|
|
530
|
+
"description": "The name of the target."
|
|
531
|
+
},
|
|
532
|
+
"params": {
|
|
533
|
+
"type": "string",
|
|
534
|
+
"description": "Configuration for params handling.",
|
|
535
|
+
"enum": ["ignore", "forward"],
|
|
536
|
+
"default": "ignore"
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"oneOf": [
|
|
540
|
+
{
|
|
541
|
+
"required": ["projects", "target"]
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"required": ["dependencies", "target"]
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"required": ["target"],
|
|
548
|
+
"not": {
|
|
549
|
+
"anyOf": [
|
|
550
|
+
{
|
|
551
|
+
"required": ["projects"]
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"required": ["dependencies"]
|
|
555
|
+
}
|
|
556
|
+
]
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
],
|
|
560
|
+
"additionalProperties": false
|
|
561
|
+
}
|
|
562
|
+
]
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
"cache": {
|
|
566
|
+
"type": "boolean",
|
|
567
|
+
"description": "Specifies if the given target should be cacheable"
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
"additionalProperties": false
|
|
571
|
+
},
|
|
572
|
+
"plugins": {
|
|
573
|
+
"oneOf": [
|
|
574
|
+
{
|
|
575
|
+
"type": "string",
|
|
576
|
+
"description": "A plugin module to load with default options"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"type": "object",
|
|
580
|
+
"properties": {
|
|
581
|
+
"plugin": {
|
|
582
|
+
"type": "string",
|
|
583
|
+
"description": "The plugin module to load"
|
|
584
|
+
},
|
|
585
|
+
"options": {
|
|
586
|
+
"type": "object",
|
|
587
|
+
"description": "The options passed to the plugin when creating nodes and dependencies"
|
|
588
|
+
},
|
|
589
|
+
"include": {
|
|
590
|
+
"type": "array",
|
|
591
|
+
"description": "File patterns which are included by the plugin",
|
|
592
|
+
"items": {
|
|
593
|
+
"type": "string"
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
"exclude": {
|
|
597
|
+
"type": "array",
|
|
598
|
+
"description": "File patterns which are excluded by the plugin",
|
|
599
|
+
"items": {
|
|
600
|
+
"type": "string"
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
]
|
|
606
|
+
},
|
|
607
|
+
"NxReleaseGitConfiguration": {
|
|
608
|
+
"type": "object",
|
|
609
|
+
"properties": {
|
|
610
|
+
"commit": {
|
|
611
|
+
"type": "boolean",
|
|
612
|
+
"description": "Whether or not to automatically commit the changes made by current command"
|
|
613
|
+
},
|
|
614
|
+
"commitMessage": {
|
|
615
|
+
"type": "string",
|
|
616
|
+
"description": "Custom git commit message to use when committing the changes made by this command"
|
|
617
|
+
},
|
|
618
|
+
"commitArgs": {
|
|
619
|
+
"type": ["string", "array"],
|
|
620
|
+
"description": "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"
|
|
621
|
+
},
|
|
622
|
+
"stageChanges": {
|
|
623
|
+
"type": "boolean",
|
|
624
|
+
"description": "Whether or not to stage the changes made by this command. Always treated as true if commit is true."
|
|
625
|
+
},
|
|
626
|
+
"tag": {
|
|
627
|
+
"type": "boolean",
|
|
628
|
+
"description": "Whether or not to automatically tag the changes made by this command"
|
|
629
|
+
},
|
|
630
|
+
"tagMessage": {
|
|
631
|
+
"type": "string",
|
|
632
|
+
"description": "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."
|
|
633
|
+
},
|
|
634
|
+
"tagArgs": {
|
|
635
|
+
"type": ["string", "array"],
|
|
636
|
+
"description": "Additional arguments to pass to the `git tag` command invoked behind the scenes"
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
"NxReleaseVersionConfiguration": {
|
|
641
|
+
"type": "object",
|
|
642
|
+
"properties": {
|
|
643
|
+
"conventionalCommits": {
|
|
644
|
+
"type": "boolean",
|
|
645
|
+
"description": "Shorthand for enabling the current version of projects to be resolved from git tags, and the next version to be determined by analyzing commit messages according to the Conventional Commits specification.",
|
|
646
|
+
"default": false
|
|
647
|
+
},
|
|
648
|
+
"generator": {
|
|
649
|
+
"type": "string"
|
|
650
|
+
},
|
|
651
|
+
"generatorOptions": {
|
|
652
|
+
"type": "object",
|
|
653
|
+
"additionalProperties": true
|
|
654
|
+
},
|
|
655
|
+
"git": {
|
|
656
|
+
"$ref": "#/definitions/NxReleaseGitConfiguration"
|
|
657
|
+
},
|
|
658
|
+
"preVersionCommand": {
|
|
659
|
+
"type": "string",
|
|
660
|
+
"description": "A command to run after validation of nx release configuration, but before versioning begins. Useful for preparing build artifacts. If --dry-run is passed, the command is still executed, but with the NX_DRY_RUN environment variable set to 'true'."
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
"additionalProperties": false
|
|
664
|
+
},
|
|
665
|
+
"NxReleaseGroupVersionConfiguration": {
|
|
666
|
+
"type": "object",
|
|
667
|
+
"properties": {
|
|
668
|
+
"conventionalCommits": {
|
|
669
|
+
"type": "boolean",
|
|
670
|
+
"description": "Shorthand for enabling the current version of projects to be resolved from git tags, and the next version to be determined by analyzing commit messages according to the Conventional Commits specification.",
|
|
671
|
+
"default": false
|
|
672
|
+
},
|
|
673
|
+
"generator": {
|
|
674
|
+
"type": "string"
|
|
675
|
+
},
|
|
676
|
+
"generatorOptions": {
|
|
677
|
+
"type": "object",
|
|
678
|
+
"additionalProperties": true
|
|
679
|
+
},
|
|
680
|
+
"groupPreVersionCommand": {
|
|
681
|
+
"type": "string",
|
|
682
|
+
"description": "A command to run after validation of nx release configuration AND after the release.version.preVersionCommand (if any), but before versioning begins for this specific group. Useful for preparing build artifacts for the group. If --dry-run is passed, the command is still executed, but with the NX_DRY_RUN environment variable set to 'true'."
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
"additionalProperties": false
|
|
686
|
+
},
|
|
687
|
+
"NxReleaseChangelogConfiguration": {
|
|
688
|
+
"type": "object",
|
|
689
|
+
"properties": {
|
|
690
|
+
"createRelease": {
|
|
691
|
+
"oneOf": [
|
|
692
|
+
{
|
|
693
|
+
"type": "string",
|
|
694
|
+
"enum": ["github"]
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"type": "boolean",
|
|
698
|
+
"enum": [false]
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"$ref": "#/definitions/CreateReleaseProviderConfiguration"
|
|
702
|
+
}
|
|
703
|
+
]
|
|
704
|
+
},
|
|
705
|
+
"entryWhenNoChanges": {
|
|
706
|
+
"oneOf": [
|
|
707
|
+
{
|
|
708
|
+
"type": "string"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"type": "boolean",
|
|
712
|
+
"enum": [false]
|
|
713
|
+
}
|
|
714
|
+
]
|
|
715
|
+
},
|
|
716
|
+
"file": {
|
|
717
|
+
"oneOf": [
|
|
718
|
+
{
|
|
719
|
+
"type": "string"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"type": "boolean",
|
|
723
|
+
"enum": [false]
|
|
724
|
+
}
|
|
725
|
+
]
|
|
726
|
+
},
|
|
727
|
+
"renderer": {
|
|
728
|
+
"type": "string"
|
|
729
|
+
},
|
|
730
|
+
"renderOptions": {
|
|
731
|
+
"$ref": "#/definitions/ChangelogRenderOptions"
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
"CreateReleaseProviderConfiguration": {
|
|
736
|
+
"type": "object",
|
|
737
|
+
"properties": {
|
|
738
|
+
"provider": {
|
|
739
|
+
"type": "string",
|
|
740
|
+
"enum": ["github-enterprise-server"]
|
|
741
|
+
},
|
|
742
|
+
"hostname": {
|
|
743
|
+
"type": "string",
|
|
744
|
+
"description": "The hostname of the VCS provider instance, e.g. github.example.com"
|
|
745
|
+
},
|
|
746
|
+
"apiBaseUrl": {
|
|
747
|
+
"type": "string",
|
|
748
|
+
"description": "The base URL for the relevant VCS provider API. If not set, this will default to `https://${hostname}/api/v3`"
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
"required": ["provider", "hostname"]
|
|
752
|
+
},
|
|
753
|
+
"NxReleaseVersionPlansConfiguration": {
|
|
754
|
+
"type": "object",
|
|
755
|
+
"properties": {
|
|
756
|
+
"ignorePatternsForPlanCheck": {
|
|
757
|
+
"type": "array",
|
|
758
|
+
"items": {
|
|
759
|
+
"type": "string"
|
|
760
|
+
},
|
|
761
|
+
"description": "Changes to files matching any of these optional patterns will be excluded from the affected project logic within the `nx release plan:check` command. This is useful for ignoring files that are not relevant to the versioning process, such as documentation or configuration files."
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"ChangelogRenderOptions": {
|
|
766
|
+
"type": "object",
|
|
767
|
+
"additionalProperties": true
|
|
768
|
+
},
|
|
769
|
+
"NxReleaseConventionalCommitsConfiguration": {
|
|
770
|
+
"type": "object",
|
|
771
|
+
"properties": {
|
|
772
|
+
"types": {
|
|
773
|
+
"type": "object",
|
|
774
|
+
"description": "A map of commit types to their configuration. If a type is set to 'true', then it will be enabled with the default 'semverBump' of 'patch' and will appear in the changelog. If a type is set to 'false', then it will not trigger a version bump and will be hidden from the changelog.",
|
|
775
|
+
"additionalProperties": {
|
|
776
|
+
"oneOf": [
|
|
777
|
+
{
|
|
778
|
+
"type": "boolean"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"type": "object",
|
|
782
|
+
"properties": {
|
|
783
|
+
"semverBump": {
|
|
784
|
+
"type": "string",
|
|
785
|
+
"enum": ["major", "minor", "patch", "none"],
|
|
786
|
+
"description": "The semver bump to apply to the version of the project(s) when a commit of this type is included in the release.",
|
|
787
|
+
"default": "patch"
|
|
788
|
+
},
|
|
789
|
+
"changelog": {
|
|
790
|
+
"description": "Configuration for the changelog section for commits of this type. If set to 'true', then commits of this type will be included in the changelog with their default title for the type. If set to 'false', then commits of this type will not be included in the changelog.",
|
|
791
|
+
"oneOf": [
|
|
792
|
+
{
|
|
793
|
+
"type": "boolean"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"type": "object",
|
|
797
|
+
"properties": {
|
|
798
|
+
"title": {
|
|
799
|
+
"type": "string",
|
|
800
|
+
"description": "The title of the section in the changelog for commits of this type"
|
|
801
|
+
},
|
|
802
|
+
"hidden": {
|
|
803
|
+
"type": "boolean",
|
|
804
|
+
"description": "Whether or not to include commits of this type in the changelog",
|
|
805
|
+
"default": false
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
]
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
]
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
}
|