@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,379 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.examples = void 0;
|
|
4
|
+
exports.examples = {
|
|
5
|
+
affected: [
|
|
6
|
+
{
|
|
7
|
+
command: 'affected -t custom-target',
|
|
8
|
+
description: 'Run custom target for all affected projects',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
command: 'affected -t test --parallel=5',
|
|
12
|
+
description: 'Run tests in parallel',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
command: 'affected -t lint test build',
|
|
16
|
+
description: 'Run lint, test, and build targets for affected projects. Requires Nx v15.4+',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
command: 'affected -t test --files=libs/mylib/src/index.ts',
|
|
20
|
+
description: 'Run tests for all the projects affected by changing the index.ts file',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
command: 'affected -t test --base=main --head=HEAD',
|
|
24
|
+
description: 'Run tests for all the projects affected by the changes between main and HEAD (e.g., PR)',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
command: 'affected -t test --base=main~1 --head=main',
|
|
28
|
+
description: 'Run tests for all the projects affected by the last commit on main',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
command: "affected -t=build --exclude='*,!tag:dotnet'",
|
|
32
|
+
description: 'Run build for only projects with the tag `dotnet`',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
command: 'affected -t build --tag=$NX_TASK_TARGET_PROJECT:latest',
|
|
36
|
+
description: 'Use the currently executing project name in your command',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
command: 'affected -t=build --graph',
|
|
40
|
+
description: 'Preview the task graph that Nx would run inside a webview',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
command: 'affected -t=build --graph=output.json',
|
|
44
|
+
description: 'Save the task graph to a file',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
command: 'affected -t=build --graph=stdout',
|
|
48
|
+
description: 'Print the task graph to the console',
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
'affected:test': [
|
|
52
|
+
{
|
|
53
|
+
command: 'affected:test --parallel=5',
|
|
54
|
+
description: 'Run tests in parallel',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
command: 'affected:test --files=libs/mylib/src/index.ts',
|
|
58
|
+
description: 'Run tests for all the projects affected by changing the index.ts file',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
command: 'affected:test --base=main --head=HEAD',
|
|
62
|
+
description: 'Run tests for all the projects affected by the changes between main and HEAD (e.g., PR)',
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
command: 'affected:test --base=main~1 --head=main',
|
|
66
|
+
description: 'Run tests for all the projects affected by the last commit on main',
|
|
67
|
+
},
|
|
68
|
+
],
|
|
69
|
+
'affected:build': [
|
|
70
|
+
{
|
|
71
|
+
command: 'affected:build --parallel=5',
|
|
72
|
+
description: 'Run build in parallel',
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
command: 'affected:build --files=libs/mylib/src/index.ts',
|
|
76
|
+
description: 'Run build for all the projects affected by changing the index.ts file',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
command: 'affected:build --base=main --head=HEAD',
|
|
80
|
+
description: 'Run build for all the projects affected by the changes between main and HEAD (e.g., PR)',
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
command: 'affected:build --base=main~1 --head=main',
|
|
84
|
+
description: 'Run build for all the projects affected by the last commit on main',
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
'affected:e2e': [
|
|
88
|
+
{
|
|
89
|
+
command: 'affected:e2e --parallel=5',
|
|
90
|
+
description: 'Run tests in parallel',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
command: 'affected:e2e --files=libs/mylib/src/index.ts',
|
|
94
|
+
description: 'Run tests for all the projects affected by changing the index.ts file',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
command: 'affected:e2e --base=main --head=HEAD',
|
|
98
|
+
description: 'Run tests for all the projects affected by the changes between main and HEAD (e.g., PR)',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
command: 'affected:e2e --base=main~1 --head=main',
|
|
102
|
+
description: 'Run tests for all the projects affected by the last commit on main',
|
|
103
|
+
},
|
|
104
|
+
],
|
|
105
|
+
'affected:lint': [
|
|
106
|
+
{
|
|
107
|
+
command: 'affected:lint --parallel=5',
|
|
108
|
+
description: 'Run lint in parallel',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
command: 'affected:lint --files=libs/mylib/src/index.ts',
|
|
112
|
+
description: 'Run lint for all the projects affected by changing the index.ts file',
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
command: 'affected:lint --base=main --head=HEAD',
|
|
116
|
+
description: 'Run lint for all the projects affected by the changes between main and HEAD (e.g., PR)',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
command: 'affected:lint --base=main~1 --head=main',
|
|
120
|
+
description: 'Run lint for all the projects affected by the last commit on main',
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
'format:write': [],
|
|
124
|
+
'format:check': [],
|
|
125
|
+
graph: [
|
|
126
|
+
{
|
|
127
|
+
command: 'graph',
|
|
128
|
+
description: 'Open the project graph of the workspace in the browser',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
command: 'graph --file=output.json',
|
|
132
|
+
description: 'Save the project graph into a json file',
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
command: 'graph --file=output.html',
|
|
136
|
+
description: 'Generate a static website with project graph into an html file, accompanied by an asset folder called static',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
command: 'graph --print',
|
|
140
|
+
description: 'Print the project graph as JSON to the console',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
command: 'graph --focus=todos-feature-main',
|
|
144
|
+
description: 'Show the graph where every node is either an ancestor or a descendant of todos-feature-main',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
command: 'graph --include=project-one,project-two',
|
|
148
|
+
description: 'Include project-one and project-two in the project graph',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
command: 'graph --exclude=project-one,project-two',
|
|
152
|
+
description: 'Exclude project-one and project-two from the project graph',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
command: 'graph --focus=todos-feature-main --exclude=project-one,project-two',
|
|
156
|
+
description: 'Show the graph where every node is either an ancestor or a descendant of todos-feature-main, but exclude project-one and project-two',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
command: 'graph --watch',
|
|
160
|
+
description: 'Watch for changes to project graph and update in-browser',
|
|
161
|
+
},
|
|
162
|
+
],
|
|
163
|
+
list: [
|
|
164
|
+
{
|
|
165
|
+
command: 'list',
|
|
166
|
+
description: 'List the plugins installed in the current workspace',
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
command: 'list @nx/web',
|
|
170
|
+
description: 'List the generators and executors available in the `@nx/web` plugin if it is installed (If the plugin is not installed `nx` will show advice on how to add it to your workspace)',
|
|
171
|
+
},
|
|
172
|
+
],
|
|
173
|
+
'run-many': [
|
|
174
|
+
{
|
|
175
|
+
command: 'run-many -t test',
|
|
176
|
+
description: 'Test all projects',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
command: 'run-many -t test -p proj1 proj2',
|
|
180
|
+
description: 'Test proj1 and proj2 in parallel',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
command: 'run-many -t test -p proj1 proj2 --parallel=5',
|
|
184
|
+
description: 'Test proj1 and proj2 in parallel using 5 workers',
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
command: 'run-many -t test -p proj1 proj2 --parallel=false',
|
|
188
|
+
description: 'Test proj1 and proj2 in sequence',
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
command: 'run-many -t test --projects=*-app --exclude excluded-app',
|
|
192
|
+
description: 'Test all projects ending with `*-app` except `excluded-app`. Note: your shell may require you to escape the `*` like this: `\\*`',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
command: 'run-many -t test --projects=tag:api-*',
|
|
196
|
+
description: 'Test all projects with tags starting with `api-`. Note: your shell may require you to escape the `*` like this: `\\*`',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
command: 'run-many -t test --projects=tag:type:ui',
|
|
200
|
+
description: 'Test all projects with a `type:ui` tag',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
command: 'run-many -t test --projects=tag:type:feature,tag:type:ui',
|
|
204
|
+
description: 'Test all projects with a `type:feature` or `type:ui` tag',
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
command: 'run-many --targets=lint,test,build',
|
|
208
|
+
description: 'Run lint, test, and build targets for all projects. Requires Nx v15.4+',
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
command: 'run-many -t=build --graph',
|
|
212
|
+
description: 'Preview the task graph that Nx would run inside a webview',
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
command: 'run-many -t=build --graph=output.json',
|
|
216
|
+
description: 'Save the task graph to a file',
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
command: 'run-many -t=build --graph=stdout',
|
|
220
|
+
description: 'Print the task graph to the console',
|
|
221
|
+
},
|
|
222
|
+
],
|
|
223
|
+
run: [
|
|
224
|
+
{
|
|
225
|
+
command: 'run myapp:build',
|
|
226
|
+
description: 'Run the target build for the myapp project',
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
command: 'run myapp:build:production',
|
|
230
|
+
description: 'Run the target build for the myapp project, with production configuration',
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
command: 'run myapp:build --graph',
|
|
234
|
+
description: 'Preview the task graph that Nx would run inside a webview',
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
command: 'run myapp:build --graph=output.json',
|
|
238
|
+
description: 'Save the task graph to a file',
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
command: 'run myapp:build --graph=stdout',
|
|
242
|
+
description: 'Print the task graph to the console',
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
command: 'run myapp:"build:test"',
|
|
246
|
+
description: 'Run\'s a target named build:test for the myapp project. Note the quotes around the target name to prevent "test" from being considered a configuration',
|
|
247
|
+
},
|
|
248
|
+
],
|
|
249
|
+
migrate: [
|
|
250
|
+
{
|
|
251
|
+
command: 'migrate latest',
|
|
252
|
+
description: 'Update all Nx plugins to "latest". This will generate migrations.json',
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
command: 'migrate 9.0.0',
|
|
256
|
+
description: 'Update all Nx plugins to "9.0.0". This will generate migrations.json',
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
command: 'migrate @nx/workspace@9.0.0 --from="@nx/workspace@8.0.0,@nx/node@8.0.0"',
|
|
260
|
+
description: 'Update @nx/workspace and generate the list of migrations starting with version 8.0.0 of @nx/workspace and @nx/node, regardless of what is installed locally',
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
command: 'migrate @nx/workspace@9.0.0 --to="@nx/react@9.0.1,@nx/angular@9.0.1"',
|
|
264
|
+
description: 'Update @nx/workspace to "9.0.0". If it tries to update @nx/react or @nx/angular, use version "9.0.1"',
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
command: 'migrate another-package@12.0.0',
|
|
268
|
+
description: 'Update another-package to "12.0.0". This will update other packages and will generate migrations.json file',
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
command: 'migrate latest --interactive',
|
|
272
|
+
description: 'Collect package updates and migrations in interactive mode. In this mode, the user will be prompted whether to apply any optional package update and migration',
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
command: 'migrate latest --from=nx@14.5.0 --exclude-applied-migrations',
|
|
276
|
+
description: 'Collect package updates and migrations starting with version 14.5.0 of "nx" (and Nx first-party plugins), regardless of what is installed locally, while excluding migrations that should have been applied on previous updates',
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
command: 'migrate --run-migrations=migrations.json',
|
|
280
|
+
description: 'Run migrations from the provided migrations.json file. You can modify migrations.json and run this command many times',
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
command: 'migrate --run-migrations --create-commits',
|
|
284
|
+
description: 'Create a dedicated commit for each successfully completed migration. You can customize the prefix used for each commit by additionally setting --commit-prefix="PREFIX_HERE "',
|
|
285
|
+
},
|
|
286
|
+
],
|
|
287
|
+
reset: [
|
|
288
|
+
{
|
|
289
|
+
command: 'reset',
|
|
290
|
+
description: 'Clears the internal state of the daemon and metadata that Nx is tracking. Helpful if you are getting strange errors and want to start fresh',
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
command: 'reset --only-cache',
|
|
294
|
+
description: 'Clears the Nx Cache directory. This will remove all local cache entries for tasks, but will not affect the remote cache',
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
command: 'reset --only-daemon',
|
|
298
|
+
description: 'Stops the Nx Daemon, it will be restarted fresh when the next Nx command is run.',
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
command: 'reset --only-workspace-data',
|
|
302
|
+
description: 'Clears the workspace data directory. Used by Nx to store cached data about the current workspace (e.g. partial results, incremental data, etc)',
|
|
303
|
+
},
|
|
304
|
+
],
|
|
305
|
+
show: [
|
|
306
|
+
{
|
|
307
|
+
command: 'show projects',
|
|
308
|
+
description: 'Show all projects in the workspace',
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
command: 'show projects --projects api-*',
|
|
312
|
+
description: 'Show all projects with names starting with "api-". The "projects" option is useful to see which projects would be selected by run-many',
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
command: 'show projects --projects tag:ui-*',
|
|
316
|
+
description: 'Show all projects with a tag starting with "ui-". The "projects" option is useful to see which projects would be selected by run-many',
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
command: 'show projects --with-target serve',
|
|
320
|
+
description: 'Show all projects with a serve target',
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
command: 'show projects --affected',
|
|
324
|
+
description: 'Show affected projects in the workspace',
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
command: 'show projects --affected --type app',
|
|
328
|
+
description: 'Show affected apps in the workspace',
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
command: 'show projects --affected --exclude=*-e2e',
|
|
332
|
+
description: 'Show affected projects in the workspace, excluding end-to-end projects',
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
command: 'show project my-app',
|
|
336
|
+
description: 'If in an interactive terminal, opens the project detail view. If not in an interactive terminal, defaults to JSON',
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
command: 'show project my-app --json',
|
|
340
|
+
description: 'Show detailed information about "my-app" in a json format',
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
command: 'show project my-app --json false',
|
|
344
|
+
description: 'Show information about "my-app" in a human readable format',
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
command: 'show project my-app --web',
|
|
348
|
+
description: 'Opens a web browser to explore the configuration of "my-app"',
|
|
349
|
+
},
|
|
350
|
+
],
|
|
351
|
+
watch: [
|
|
352
|
+
{
|
|
353
|
+
command: 'watch --projects=app -- echo \\$NX_PROJECT_NAME \\$NX_FILE_CHANGES',
|
|
354
|
+
description: 'Watch the "app" project and echo the project name and the files that changed',
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
command: 'watch --projects=app1,app2 --includeDependentProjects -- echo \\$NX_PROJECT_NAME',
|
|
358
|
+
description: 'Watch "app1" and "app2" and echo the project name whenever a specified project or its dependencies change',
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
command: 'watch --all -- echo \\$NX_PROJECT_NAME',
|
|
362
|
+
description: 'Watch all projects (including newly created projects) in the workspace',
|
|
363
|
+
},
|
|
364
|
+
],
|
|
365
|
+
add: [
|
|
366
|
+
{
|
|
367
|
+
command: 'add @nx/react',
|
|
368
|
+
description: 'Install the `@nx/react` package matching the installed version of the `nx` package and run its `@nx/react:init` generator',
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
command: 'add non-core-nx-plugin',
|
|
372
|
+
description: 'Install the latest version of the `non-core-nx-plugin` package and run its `non-core-nx-plugin:init` generator if available',
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
command: 'add @nx/react@17.0.0',
|
|
376
|
+
description: 'Install version `17.0.0` of the `@nx/react` package and run its `@nx/react:init` generator',
|
|
377
|
+
},
|
|
378
|
+
],
|
|
379
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.yargsExecCommand = void 0;
|
|
4
|
+
const shared_options_1 = require("../yargs-utils/shared-options");
|
|
5
|
+
exports.yargsExecCommand = {
|
|
6
|
+
command: 'exec',
|
|
7
|
+
describe: 'Executes any command as if it was a target on the project.',
|
|
8
|
+
builder: (yargs) => (0, shared_options_1.withRunManyOptions)(yargs),
|
|
9
|
+
handler: async (args) => {
|
|
10
|
+
try {
|
|
11
|
+
await (await Promise.resolve().then(() => require('./exec'))).nxExecCommand((0, shared_options_1.withOverrides)(args));
|
|
12
|
+
process.exit(0);
|
|
13
|
+
}
|
|
14
|
+
catch (e) {
|
|
15
|
+
console.error(e);
|
|
16
|
+
process.exit(1);
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function nxExecCommand(args: Record<string, string | string[] | boolean>): Promise<unknown>;
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.nxExecCommand = nxExecCommand;
|
|
4
|
+
const child_process_1 = require("child_process");
|
|
5
|
+
const path_1 = require("path");
|
|
6
|
+
const process_1 = require("process");
|
|
7
|
+
const yargs = require("yargs-parser");
|
|
8
|
+
const fs_1 = require("fs");
|
|
9
|
+
const find_matching_projects_1 = require("../../utils/find-matching-projects");
|
|
10
|
+
const configuration_1 = require("../../config/configuration");
|
|
11
|
+
const project_graph_1 = require("../../project-graph/project-graph");
|
|
12
|
+
const command_line_utils_1 = require("../../utils/command-line-utils");
|
|
13
|
+
const fileutils_1 = require("../../utils/fileutils");
|
|
14
|
+
const output_1 = require("../../utils/output");
|
|
15
|
+
const package_manager_1 = require("../../utils/package-manager");
|
|
16
|
+
const workspace_root_1 = require("../../utils/workspace-root");
|
|
17
|
+
const path_2 = require("../../utils/path");
|
|
18
|
+
const calculate_default_project_name_1 = require("../../config/calculate-default-project-name");
|
|
19
|
+
const get_command_projects_1 = require("../../commands-runner/get-command-projects");
|
|
20
|
+
async function nxExecCommand(args) {
|
|
21
|
+
const nxJson = (0, configuration_1.readNxJson)();
|
|
22
|
+
const { nxArgs, overrides } = (0, command_line_utils_1.splitArgsIntoNxArgsAndOverrides)(args, 'run-many', { printWarnings: args.graph !== 'stdout' }, nxJson);
|
|
23
|
+
const scriptArgV = readScriptArgV(overrides);
|
|
24
|
+
const projectGraph = await (0, project_graph_1.createProjectGraphAsync)({ exitOnError: true });
|
|
25
|
+
// NX is already running
|
|
26
|
+
if (process.env.NX_TASK_TARGET_PROJECT) {
|
|
27
|
+
const command = scriptArgV
|
|
28
|
+
.reduce((cmd, arg) => cmd + `"${arg}" `, '')
|
|
29
|
+
.trim();
|
|
30
|
+
(0, child_process_1.execSync)(command, {
|
|
31
|
+
stdio: 'inherit',
|
|
32
|
+
env: {
|
|
33
|
+
...process.env,
|
|
34
|
+
NX_PROJECT_NAME: process.env.NX_TASK_TARGET_PROJECT,
|
|
35
|
+
NX_PROJECT_ROOT_PATH: projectGraph.nodes?.[process.env.NX_TASK_TARGET_PROJECT]?.data?.root,
|
|
36
|
+
},
|
|
37
|
+
windowsHide: true,
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
// nx exec is being ran inside of Nx's context
|
|
42
|
+
return runScriptAsNxTarget(projectGraph, scriptArgV, nxArgs);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
async function runScriptAsNxTarget(projectGraph, argv, nxArgs) {
|
|
46
|
+
// NPM, Yarn, and PNPM set this to the name of the currently executing script. Lets use it if we can.
|
|
47
|
+
const targetName = process.env.npm_lifecycle_event;
|
|
48
|
+
if (targetName) {
|
|
49
|
+
const defaultPorject = getDefaultProject(projectGraph);
|
|
50
|
+
const scriptDefinition = getScriptDefinition(targetName, defaultPorject);
|
|
51
|
+
if (scriptDefinition) {
|
|
52
|
+
runTargetOnProject(scriptDefinition, targetName, defaultPorject, defaultPorject.name, argv);
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
const projects = getProjects(projectGraph, nxArgs);
|
|
57
|
+
const projectsToRun = (0, get_command_projects_1.getCommandProjects)(projectGraph, projects, nxArgs);
|
|
58
|
+
projectsToRun.forEach((projectName) => {
|
|
59
|
+
const command = argv.reduce((cmd, arg) => cmd + `"${arg}" `, '').trim();
|
|
60
|
+
(0, child_process_1.execSync)(command, {
|
|
61
|
+
stdio: 'inherit',
|
|
62
|
+
env: {
|
|
63
|
+
...process.env,
|
|
64
|
+
NX_PROJECT_NAME: projectGraph.nodes?.[projectName]?.name,
|
|
65
|
+
NX_PROJECT_ROOT_PATH: projectGraph.nodes?.[projectName]?.data?.root,
|
|
66
|
+
},
|
|
67
|
+
cwd: projectGraph.nodes?.[projectName]?.data?.root
|
|
68
|
+
? (0, path_2.joinPathFragments)(workspace_root_1.workspaceRoot, projectGraph.nodes?.[projectName]?.data?.root)
|
|
69
|
+
: workspace_root_1.workspaceRoot,
|
|
70
|
+
windowsHide: true,
|
|
71
|
+
});
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
function runTargetOnProject(scriptDefinition, targetName, project, projectName, argv) {
|
|
75
|
+
ensureNxTarget(project, targetName);
|
|
76
|
+
// Get ArgV that is provided in npm script definition
|
|
77
|
+
const providedArgs = yargs(scriptDefinition)._.slice(2);
|
|
78
|
+
const extraArgs = providedArgs.length === argv.length ? [] : argv.slice(providedArgs.length);
|
|
79
|
+
const pm = (0, package_manager_1.getPackageManagerCommand)();
|
|
80
|
+
// `targetName` might be an npm script with `:` like: `start:dev`, `start:debug`.
|
|
81
|
+
const command = `${pm.exec} nx run ${projectName}:\\\"${targetName}\\\" ${extraArgs.join(' ')}`;
|
|
82
|
+
(0, child_process_1.execSync)(command, {
|
|
83
|
+
stdio: 'inherit',
|
|
84
|
+
windowsHide: true,
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
function readScriptArgV(overrides) {
|
|
88
|
+
const scriptSeparatorIdx = process.argv.findIndex((el) => el === '--');
|
|
89
|
+
if (scriptSeparatorIdx === -1) {
|
|
90
|
+
output_1.output.error({
|
|
91
|
+
title: '`nx exec` requires passing in a command after `--`',
|
|
92
|
+
});
|
|
93
|
+
process.exit(1);
|
|
94
|
+
}
|
|
95
|
+
return overrides.__overrides_unparsed__;
|
|
96
|
+
}
|
|
97
|
+
function getScriptDefinition(targetName, project) {
|
|
98
|
+
if (!project) {
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
const packageJsonPath = (0, path_1.join)(workspace_root_1.workspaceRoot, project.data.root, 'package.json');
|
|
102
|
+
if ((0, fs_1.existsSync)(packageJsonPath)) {
|
|
103
|
+
const scriptDefinition = (0, fileutils_1.readJsonFile)(packageJsonPath).scripts?.[targetName];
|
|
104
|
+
return scriptDefinition;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
function ensureNxTarget(project, targetName) {
|
|
108
|
+
if (!project.data.targets[targetName]) {
|
|
109
|
+
output_1.output.error({
|
|
110
|
+
title: `Nx cannot find a target called "${targetName}" for ${project.name}`,
|
|
111
|
+
bodyLines: [
|
|
112
|
+
`Is ${targetName} missing from ${project.data.root}/package.json's nx.includedScripts field?`,
|
|
113
|
+
],
|
|
114
|
+
});
|
|
115
|
+
(0, process_1.exit)(1);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
function getDefaultProject(projectGraph) {
|
|
119
|
+
const defaultProjectName = (0, calculate_default_project_name_1.calculateDefaultProjectName)(process.cwd(), workspace_root_1.workspaceRoot, (0, project_graph_1.readProjectsConfigurationFromProjectGraph)(projectGraph), (0, configuration_1.readNxJson)());
|
|
120
|
+
if (defaultProjectName && projectGraph.nodes[defaultProjectName]) {
|
|
121
|
+
return projectGraph.nodes[defaultProjectName];
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
function getProjects(projectGraph, nxArgs) {
|
|
125
|
+
let selectedProjects = {};
|
|
126
|
+
// get projects matched
|
|
127
|
+
if (nxArgs.projects?.length) {
|
|
128
|
+
const matchingProjects = (0, find_matching_projects_1.findMatchingProjects)(nxArgs.projects, projectGraph.nodes);
|
|
129
|
+
for (const project of matchingProjects) {
|
|
130
|
+
selectedProjects[project] = projectGraph.nodes[project];
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
else {
|
|
134
|
+
// if no project specified, return all projects
|
|
135
|
+
selectedProjects = { ...projectGraph.nodes };
|
|
136
|
+
}
|
|
137
|
+
const excludedProjects = (0, find_matching_projects_1.findMatchingProjects)(nxArgs.exclude, selectedProjects);
|
|
138
|
+
for (const excludedProject of excludedProjects) {
|
|
139
|
+
delete selectedProjects[excludedProject];
|
|
140
|
+
}
|
|
141
|
+
return Object.values(selectedProjects);
|
|
142
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.yargsFormatWriteCommand = exports.yargsFormatCheckCommand = void 0;
|
|
4
|
+
const documentation_1 = require("../yargs-utils/documentation");
|
|
5
|
+
const shared_options_1 = require("../yargs-utils/shared-options");
|
|
6
|
+
exports.yargsFormatCheckCommand = {
|
|
7
|
+
command: 'format:check',
|
|
8
|
+
describe: 'Check for un-formatted files.',
|
|
9
|
+
builder: (yargs) => (0, documentation_1.linkToNxDevAndExamples)(withFormatOptions(yargs), 'format:check'),
|
|
10
|
+
handler: async (args) => {
|
|
11
|
+
await (await Promise.resolve().then(() => require('./format'))).format('check', args);
|
|
12
|
+
process.exit(0);
|
|
13
|
+
},
|
|
14
|
+
};
|
|
15
|
+
exports.yargsFormatWriteCommand = {
|
|
16
|
+
command: 'format:write',
|
|
17
|
+
describe: 'Overwrite un-formatted files.',
|
|
18
|
+
aliases: ['format'],
|
|
19
|
+
builder: (yargs) => (0, documentation_1.linkToNxDevAndExamples)(withFormatOptions(yargs), 'format:write'),
|
|
20
|
+
handler: async (args) => {
|
|
21
|
+
await (await Promise.resolve().then(() => require('./format'))).format('write', args);
|
|
22
|
+
process.exit(0);
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
function withFormatOptions(yargs) {
|
|
26
|
+
return (0, shared_options_1.withAffectedOptions)(yargs)
|
|
27
|
+
.parserConfiguration({
|
|
28
|
+
'camel-case-expansion': true,
|
|
29
|
+
})
|
|
30
|
+
.option('libs-and-apps', {
|
|
31
|
+
describe: 'Format only libraries and applications files.',
|
|
32
|
+
type: 'boolean',
|
|
33
|
+
})
|
|
34
|
+
.option('projects', {
|
|
35
|
+
describe: 'Projects to format (comma/space delimited).',
|
|
36
|
+
type: 'string',
|
|
37
|
+
coerce: shared_options_1.parseCSV,
|
|
38
|
+
})
|
|
39
|
+
.option('all', {
|
|
40
|
+
describe: 'Format all projects.',
|
|
41
|
+
type: 'boolean',
|
|
42
|
+
})
|
|
43
|
+
.conflicts({
|
|
44
|
+
all: 'projects',
|
|
45
|
+
});
|
|
46
|
+
}
|