@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
package/package.json
ADDED
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ohos-ports/nx",
|
|
3
|
+
"version": "19.8.4-beta.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration. (ohos-ports: HarmonyOS openharmony/arm64 native binding, compiled from source)",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/ohos-ports/ohos-ports.git",
|
|
9
|
+
"directory": "ports/@nrwl/next/19.8.4"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"Monorepo",
|
|
13
|
+
"Angular",
|
|
14
|
+
"React",
|
|
15
|
+
"Web",
|
|
16
|
+
"Node",
|
|
17
|
+
"Nest",
|
|
18
|
+
"Jest",
|
|
19
|
+
"Cypress",
|
|
20
|
+
"CLI",
|
|
21
|
+
"Testing",
|
|
22
|
+
"Front-end",
|
|
23
|
+
"Backend",
|
|
24
|
+
"Mobile"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"nx": "./bin/nx.js",
|
|
28
|
+
"nx-cloud": "./bin/nx-cloud.js"
|
|
29
|
+
},
|
|
30
|
+
"author": "Victor Savkin",
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"homepage": "https://nx.dev",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@napi-rs/wasm-runtime": "0.2.4",
|
|
35
|
+
"@yarnpkg/lockfile": "^1.1.0",
|
|
36
|
+
"@yarnpkg/parsers": "3.0.0-rc.46",
|
|
37
|
+
"@zkochan/js-yaml": "0.0.7",
|
|
38
|
+
"axios": "^1.7.4",
|
|
39
|
+
"chalk": "^4.1.0",
|
|
40
|
+
"cli-cursor": "3.1.0",
|
|
41
|
+
"cli-spinners": "2.6.1",
|
|
42
|
+
"cliui": "^8.0.1",
|
|
43
|
+
"dotenv": "~16.4.5",
|
|
44
|
+
"dotenv-expand": "~11.0.6",
|
|
45
|
+
"enquirer": "~2.3.6",
|
|
46
|
+
"figures": "3.2.0",
|
|
47
|
+
"flat": "^5.0.2",
|
|
48
|
+
"front-matter": "^4.0.2",
|
|
49
|
+
"ignore": "^5.0.4",
|
|
50
|
+
"jest-diff": "^29.4.1",
|
|
51
|
+
"jsonc-parser": "3.2.0",
|
|
52
|
+
"lines-and-columns": "2.0.3",
|
|
53
|
+
"minimatch": "9.0.3",
|
|
54
|
+
"npm-run-path": "^4.0.1",
|
|
55
|
+
"open": "^8.4.0",
|
|
56
|
+
"semver": "^7.5.3",
|
|
57
|
+
"string-width": "^4.2.3",
|
|
58
|
+
"strong-log-transformer": "^2.1.0",
|
|
59
|
+
"tar-stream": "~2.2.0",
|
|
60
|
+
"tmp": "~0.2.1",
|
|
61
|
+
"tsconfig-paths": "^4.1.2",
|
|
62
|
+
"tslib": "^2.3.0",
|
|
63
|
+
"yargs": "^17.6.2",
|
|
64
|
+
"yargs-parser": "21.1.1",
|
|
65
|
+
"node-machine-id": "1.1.12",
|
|
66
|
+
"ora": "5.3.0",
|
|
67
|
+
"@nrwl/tao": "19.8.4"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"@swc-node/register": "^1.8.0",
|
|
71
|
+
"@swc/core": "^1.3.85"
|
|
72
|
+
},
|
|
73
|
+
"peerDependenciesMeta": {
|
|
74
|
+
"@swc-node/register": {
|
|
75
|
+
"optional": true
|
|
76
|
+
},
|
|
77
|
+
"@swc/core": {
|
|
78
|
+
"optional": true
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"optionalDependencies": {
|
|
82
|
+
"@nx/nx-darwin-x64": "19.8.4",
|
|
83
|
+
"@nx/nx-darwin-arm64": "19.8.4",
|
|
84
|
+
"@nx/nx-linux-x64-gnu": "19.8.4",
|
|
85
|
+
"@nx/nx-linux-x64-musl": "19.8.4",
|
|
86
|
+
"@nx/nx-win32-x64-msvc": "19.8.4",
|
|
87
|
+
"@nx/nx-linux-arm64-gnu": "19.8.4",
|
|
88
|
+
"@nx/nx-linux-arm64-musl": "19.8.4",
|
|
89
|
+
"@nx/nx-linux-arm-gnueabihf": "19.8.4",
|
|
90
|
+
"@nx/nx-win32-arm64-msvc": "19.8.4",
|
|
91
|
+
"@nx/nx-freebsd-x64": "19.8.4"
|
|
92
|
+
},
|
|
93
|
+
"nx-migrations": {
|
|
94
|
+
"migrations": "./migrations.json",
|
|
95
|
+
"packageGroup": [
|
|
96
|
+
"@nx/js",
|
|
97
|
+
"@nrwl/js",
|
|
98
|
+
"@nx/jest",
|
|
99
|
+
"@nrwl/jest",
|
|
100
|
+
"@nx/linter",
|
|
101
|
+
"@nx/eslint",
|
|
102
|
+
"@nrwl/linter",
|
|
103
|
+
"@nx/workspace",
|
|
104
|
+
"@nrwl/workspace",
|
|
105
|
+
"@nx/angular",
|
|
106
|
+
"@nrwl/angular",
|
|
107
|
+
"@nx/cypress",
|
|
108
|
+
"@nrwl/cypress",
|
|
109
|
+
"@nx/detox",
|
|
110
|
+
"@nrwl/detox",
|
|
111
|
+
"@nx/devkit",
|
|
112
|
+
"@nrwl/devkit",
|
|
113
|
+
"@nx/esbuild",
|
|
114
|
+
"@nrwl/esbuild",
|
|
115
|
+
"@nx/eslint-plugin",
|
|
116
|
+
"@nrwl/eslint-plugin-nx",
|
|
117
|
+
"@nx/expo",
|
|
118
|
+
"@nrwl/expo",
|
|
119
|
+
"@nx/express",
|
|
120
|
+
"@nrwl/express",
|
|
121
|
+
"@nx/gradle",
|
|
122
|
+
"@nx/nest",
|
|
123
|
+
"@nrwl/nest",
|
|
124
|
+
"@nx/next",
|
|
125
|
+
"@nrwl/next",
|
|
126
|
+
"@nx/node",
|
|
127
|
+
"@nrwl/node",
|
|
128
|
+
"@nx/nuxt",
|
|
129
|
+
"@nx/playwright",
|
|
130
|
+
"@nx/plugin",
|
|
131
|
+
"@nrwl/nx-plugin",
|
|
132
|
+
"@nx/react",
|
|
133
|
+
"@nrwl/react",
|
|
134
|
+
"@nx/react-native",
|
|
135
|
+
"@nrwl/react-native",
|
|
136
|
+
"@nx/rollup",
|
|
137
|
+
"@nrwl/rollup",
|
|
138
|
+
"@nx/remix",
|
|
139
|
+
"@nrwl/remix",
|
|
140
|
+
"@nx/storybook",
|
|
141
|
+
"@nrwl/storybook",
|
|
142
|
+
"@nrwl/tao",
|
|
143
|
+
"@nx/vite",
|
|
144
|
+
"@nrwl/vite",
|
|
145
|
+
"@nx/vue",
|
|
146
|
+
"@nx/web",
|
|
147
|
+
"@nrwl/web",
|
|
148
|
+
"@nx/webpack",
|
|
149
|
+
"@nrwl/webpack",
|
|
150
|
+
{
|
|
151
|
+
"package": "nx-cloud",
|
|
152
|
+
"version": "latest"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"package": "@nrwl/nx-cloud",
|
|
156
|
+
"version": "latest"
|
|
157
|
+
}
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
"generators": "./generators.json",
|
|
161
|
+
"executors": "./executors.json",
|
|
162
|
+
"builders": "./executors.json",
|
|
163
|
+
"publishConfig": {
|
|
164
|
+
"access": "public"
|
|
165
|
+
},
|
|
166
|
+
"napi": {
|
|
167
|
+
"binaryName": "nx",
|
|
168
|
+
"packageName": "@nx/nx",
|
|
169
|
+
"wasm": {
|
|
170
|
+
"initialMemory": 1024,
|
|
171
|
+
"maximumMemory": 32768
|
|
172
|
+
},
|
|
173
|
+
"targets": [
|
|
174
|
+
"x86_64-unknown-linux-gnu",
|
|
175
|
+
"x86_64-pc-windows-msvc",
|
|
176
|
+
"x86_64-apple-darwin",
|
|
177
|
+
"aarch64-apple-darwin",
|
|
178
|
+
"aarch64-unknown-linux-gnu",
|
|
179
|
+
"aarch64-unknown-linux-musl",
|
|
180
|
+
"aarch64-pc-windows-msvc",
|
|
181
|
+
"armv7-unknown-linux-gnueabihf",
|
|
182
|
+
"x86_64-unknown-linux-musl",
|
|
183
|
+
"x86_64-unknown-freebsd"
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
"main": "./bin/nx.js",
|
|
187
|
+
"type": "commonjs",
|
|
188
|
+
"types": "./bin/nx.d.ts",
|
|
189
|
+
"scripts": {
|
|
190
|
+
"postinstall": "node ./bin/post-install"
|
|
191
|
+
},
|
|
192
|
+
"bugs": {
|
|
193
|
+
"url": "https://github.com/ohos-ports/ohos-ports/issues"
|
|
194
|
+
},
|
|
195
|
+
"bundleDependencies": [
|
|
196
|
+
"@nrwl/tao"
|
|
197
|
+
]
|
|
198
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const workspace_root_1 = require("../src/utils/workspace-root");
|
|
4
|
+
const package_json_1 = require("../src/plugins/package-json");
|
|
5
|
+
const plugin = {
|
|
6
|
+
name: 'nx-all-package-jsons-plugin',
|
|
7
|
+
createNodes: [
|
|
8
|
+
'*/**/package.json',
|
|
9
|
+
(f) => (0, package_json_1.createNodeFromPackageJson)(f, workspace_root_1.workspaceRoot),
|
|
10
|
+
],
|
|
11
|
+
};
|
|
12
|
+
module.exports = plugin;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/presets/npm.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { ChangelogChange } from '../../src/command-line/release/changelog';
|
|
2
|
+
import { NxReleaseConfig } from '../../src/command-line/release/config/config';
|
|
3
|
+
import { GitCommit } from '../../src/command-line/release/utils/git';
|
|
4
|
+
import { GithubRepoData, RepoSlug } from '../../src/command-line/release/utils/github';
|
|
5
|
+
import type { ProjectGraph } from '../../src/config/project-graph';
|
|
6
|
+
/**
|
|
7
|
+
* The ChangelogRenderOptions are specific to each ChangelogRenderer implementation, and are taken
|
|
8
|
+
* from the user's nx.json configuration and passed as is into the ChangelogRenderer function.
|
|
9
|
+
*/
|
|
10
|
+
export type ChangelogRenderOptions = Record<string, unknown>;
|
|
11
|
+
/**
|
|
12
|
+
* When versioning projects independently and enabling `"updateDependents": "always"`, there could
|
|
13
|
+
* be additional dependency bump information that is not captured in the commit data, but that nevertheless
|
|
14
|
+
* should be included in the rendered changelog.
|
|
15
|
+
*/
|
|
16
|
+
export type DependencyBump = {
|
|
17
|
+
dependencyName: string;
|
|
18
|
+
newVersion: string;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* A ChangelogRenderer function takes in the extracted commits and other relevant metadata
|
|
22
|
+
* and returns a string, or a Promise of a string of changelog contents (usually markdown).
|
|
23
|
+
*
|
|
24
|
+
* @param {Object} config The configuration object for the ChangelogRenderer
|
|
25
|
+
* @param {ProjectGraph} config.projectGraph The project graph for the workspace
|
|
26
|
+
* @param {GitCommit[]} config.commits DEPRECATED [Use 'config.changes' instead] - The collection of extracted commits to generate a changelog for
|
|
27
|
+
* @param {ChangelogChange[]} config.changes The collection of changes to show in the changelog
|
|
28
|
+
* @param {string} config.releaseVersion The version that is being released
|
|
29
|
+
* @param {string | null} config.project The name of specific project to generate a changelog for, or `null` if the overall workspace changelog
|
|
30
|
+
* @param {string | false} config.entryWhenNoChanges The (already interpolated) string to use as the changelog entry when there are no changes, or `false` if no entry should be generated
|
|
31
|
+
* @param {ChangelogRenderOptions} config.changelogRenderOptions The options specific to the ChangelogRenderer implementation
|
|
32
|
+
* @param {DependencyBump[]} config.dependencyBumps Optional list of additional dependency bumps that occurred as part of the release, outside of the commit data
|
|
33
|
+
* @param {GithubRepoData} config.repoData Resolved data for the current GitHub repository
|
|
34
|
+
*/
|
|
35
|
+
export type ChangelogRenderer = (config: {
|
|
36
|
+
projectGraph: ProjectGraph;
|
|
37
|
+
commits?: GitCommit[];
|
|
38
|
+
changes?: ChangelogChange[];
|
|
39
|
+
releaseVersion: string;
|
|
40
|
+
project: string | null;
|
|
41
|
+
entryWhenNoChanges: string | false;
|
|
42
|
+
changelogRenderOptions: DefaultChangelogRenderOptions;
|
|
43
|
+
dependencyBumps?: DependencyBump[];
|
|
44
|
+
repoSlug?: RepoSlug;
|
|
45
|
+
repoData?: GithubRepoData;
|
|
46
|
+
conventionalCommitsConfig: NxReleaseConfig['conventionalCommits'] | null;
|
|
47
|
+
}) => Promise<string> | string;
|
|
48
|
+
/**
|
|
49
|
+
* The specific options available to the default implementation of the ChangelogRenderer that nx exports
|
|
50
|
+
* for the common case.
|
|
51
|
+
*/
|
|
52
|
+
export interface DefaultChangelogRenderOptions extends ChangelogRenderOptions {
|
|
53
|
+
/**
|
|
54
|
+
* Whether or not the commit authors should be added to the bottom of the changelog in a "Thank You"
|
|
55
|
+
* section. Defaults to true.
|
|
56
|
+
*/
|
|
57
|
+
authors?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* If authors is enabled, controls whether or not to try to map the authors to their GitHub usernames
|
|
60
|
+
* using https://ungh.cc (from https://github.com/unjs/ungh) and the email addresses found in the commits.
|
|
61
|
+
* Defaults to true.
|
|
62
|
+
*/
|
|
63
|
+
mapAuthorsToGitHubUsernames?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* Whether or not the commit references (such as commit and/or PR links) should be included in the changelog.
|
|
66
|
+
* Defaults to true.
|
|
67
|
+
*/
|
|
68
|
+
commitReferences?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* Whether or not to include the date in the version title. It can be set to false to disable it, or true to enable
|
|
71
|
+
* with the default of (YYYY-MM-DD). Defaults to true.
|
|
72
|
+
*/
|
|
73
|
+
versionTitleDate?: boolean;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* The default ChangelogRenderer implementation that nx exports for the common case of generating markdown
|
|
77
|
+
* from the given commits and other metadata.
|
|
78
|
+
*/
|
|
79
|
+
declare const defaultChangelogRenderer: ChangelogRenderer;
|
|
80
|
+
export default defaultChangelogRenderer;
|
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const semver_1 = require("semver");
|
|
4
|
+
const conventional_commits_1 = require("../../src/command-line/release/config/conventional-commits");
|
|
5
|
+
const github_1 = require("../../src/command-line/release/utils/github");
|
|
6
|
+
// axios types and values don't seem to match
|
|
7
|
+
const _axios = require("axios");
|
|
8
|
+
const axios = _axios;
|
|
9
|
+
/**
|
|
10
|
+
* The default ChangelogRenderer implementation that nx exports for the common case of generating markdown
|
|
11
|
+
* from the given commits and other metadata.
|
|
12
|
+
*/
|
|
13
|
+
const defaultChangelogRenderer = async ({ projectGraph, changes, releaseVersion, project, entryWhenNoChanges, changelogRenderOptions, dependencyBumps, repoSlug, conventionalCommitsConfig, repoData, }) => {
|
|
14
|
+
const markdownLines = [];
|
|
15
|
+
// If the current range of changes contains both a commit and its revert, we strip them both from the final list. Changes from version plans are unaffected, as they have no hashes.
|
|
16
|
+
for (const change of changes) {
|
|
17
|
+
if (change.type === 'revert' && change.revertedHashes) {
|
|
18
|
+
for (const revertedHash of change.revertedHashes) {
|
|
19
|
+
const revertedCommit = changes.find((c) => c.shortHash && revertedHash.startsWith(c.shortHash));
|
|
20
|
+
if (revertedCommit) {
|
|
21
|
+
changes.splice(changes.indexOf(revertedCommit), 1);
|
|
22
|
+
changes.splice(changes.indexOf(change), 1);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
let relevantChanges = changes;
|
|
28
|
+
const breakingChanges = [];
|
|
29
|
+
// For now to keep the interface of the changelog renderer non-breaking for v19 releases we have a somewhat indirect check for whether or not we are generating a changelog for version plans
|
|
30
|
+
const isVersionPlans = !conventionalCommitsConfig;
|
|
31
|
+
// Only applicable for version plans
|
|
32
|
+
const additionalChangesForAuthorsSection = [];
|
|
33
|
+
// Provide a default configuration for version plans to allow most of the subsequent logic to work in the same way it would for conventional commits
|
|
34
|
+
// NOTE: The one exception is breaking/major changes, where we do not follow the same structure and instead only show the changes once
|
|
35
|
+
if (isVersionPlans) {
|
|
36
|
+
conventionalCommitsConfig = {
|
|
37
|
+
types: {
|
|
38
|
+
feat: conventional_commits_1.DEFAULT_CONVENTIONAL_COMMITS_CONFIG.types.feat,
|
|
39
|
+
fix: conventional_commits_1.DEFAULT_CONVENTIONAL_COMMITS_CONFIG.types.fix,
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
// Trim down "relevant changes" to only include non-breaking ones so that we can render them differently under version plans,
|
|
43
|
+
// but keep track of the changes for the purposes of the authors section
|
|
44
|
+
// TODO(v20): Clean this abstraction up as part of the larger overall refactor of changelog rendering
|
|
45
|
+
for (let i = 0; i < relevantChanges.length; i++) {
|
|
46
|
+
if (relevantChanges[i].isBreaking) {
|
|
47
|
+
const change = relevantChanges[i];
|
|
48
|
+
additionalChangesForAuthorsSection.push(change);
|
|
49
|
+
const line = formatChange(change, changelogRenderOptions, isVersionPlans, repoData);
|
|
50
|
+
breakingChanges.push(line);
|
|
51
|
+
relevantChanges.splice(i, 1);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
const changeTypes = conventionalCommitsConfig.types;
|
|
56
|
+
// workspace root level changelog
|
|
57
|
+
if (project === null) {
|
|
58
|
+
// No changes for the workspace
|
|
59
|
+
if (relevantChanges.length === 0 && breakingChanges.length === 0) {
|
|
60
|
+
if (dependencyBumps?.length) {
|
|
61
|
+
applyAdditionalDependencyBumps({
|
|
62
|
+
markdownLines,
|
|
63
|
+
dependencyBumps,
|
|
64
|
+
releaseVersion,
|
|
65
|
+
changelogRenderOptions,
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
else if (entryWhenNoChanges) {
|
|
69
|
+
markdownLines.push('', `${createVersionTitle(releaseVersion, changelogRenderOptions)}\n\n${entryWhenNoChanges}`, '');
|
|
70
|
+
}
|
|
71
|
+
return markdownLines.join('\n').trim();
|
|
72
|
+
}
|
|
73
|
+
const typeGroups = groupBy(relevantChanges, 'type');
|
|
74
|
+
markdownLines.push('', createVersionTitle(releaseVersion, changelogRenderOptions), '');
|
|
75
|
+
for (const type of Object.keys(changeTypes)) {
|
|
76
|
+
const group = typeGroups[type];
|
|
77
|
+
if (!group || group.length === 0) {
|
|
78
|
+
continue;
|
|
79
|
+
}
|
|
80
|
+
markdownLines.push('', '### ' + changeTypes[type].changelog.title, '');
|
|
81
|
+
/**
|
|
82
|
+
* In order to make the final changelog most readable, we organize changes as follows:
|
|
83
|
+
* - By scope, where scopes are in alphabetical order (changes with no scope are listed first)
|
|
84
|
+
* - Within a particular scope grouping, we list changes in chronological order
|
|
85
|
+
*/
|
|
86
|
+
const changesInChronologicalOrder = group.reverse();
|
|
87
|
+
const changesGroupedByScope = groupBy(changesInChronologicalOrder, 'scope');
|
|
88
|
+
const scopesSortedAlphabetically = Object.keys(changesGroupedByScope).sort();
|
|
89
|
+
for (const scope of scopesSortedAlphabetically) {
|
|
90
|
+
const changes = changesGroupedByScope[scope];
|
|
91
|
+
for (const change of changes) {
|
|
92
|
+
const line = formatChange(change, changelogRenderOptions, isVersionPlans, repoData);
|
|
93
|
+
markdownLines.push(line);
|
|
94
|
+
if (change.isBreaking) {
|
|
95
|
+
const breakingChangeExplanation = extractBreakingChangeExplanation(change.body);
|
|
96
|
+
breakingChanges.push(breakingChangeExplanation
|
|
97
|
+
? `- ${change.scope ? `**${change.scope.trim()}:** ` : ''}${breakingChangeExplanation}`
|
|
98
|
+
: line);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
else {
|
|
105
|
+
// project level changelog
|
|
106
|
+
relevantChanges = relevantChanges.filter((c) => c.affectedProjects &&
|
|
107
|
+
(c.affectedProjects === '*' || c.affectedProjects.includes(project)));
|
|
108
|
+
// Generating for a named project, but that project has no relevant changes in the current set of commits, exit early
|
|
109
|
+
if (relevantChanges.length === 0 && breakingChanges.length === 0) {
|
|
110
|
+
if (dependencyBumps?.length) {
|
|
111
|
+
applyAdditionalDependencyBumps({
|
|
112
|
+
markdownLines,
|
|
113
|
+
dependencyBumps,
|
|
114
|
+
releaseVersion,
|
|
115
|
+
changelogRenderOptions,
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
else if (entryWhenNoChanges) {
|
|
119
|
+
markdownLines.push('', `${createVersionTitle(releaseVersion, changelogRenderOptions)}\n\n${entryWhenNoChanges}`, '');
|
|
120
|
+
}
|
|
121
|
+
return markdownLines.join('\n').trim();
|
|
122
|
+
}
|
|
123
|
+
markdownLines.push('', createVersionTitle(releaseVersion, changelogRenderOptions), '');
|
|
124
|
+
const typeGroups = groupBy(
|
|
125
|
+
// Sort the relevant changes to have the unscoped changes first, before grouping by type
|
|
126
|
+
relevantChanges.sort((a, b) => (b.scope ? 1 : 0) - (a.scope ? 1 : 0)), 'type');
|
|
127
|
+
for (const type of Object.keys(changeTypes)) {
|
|
128
|
+
const group = typeGroups[type];
|
|
129
|
+
if (!group || group.length === 0) {
|
|
130
|
+
continue;
|
|
131
|
+
}
|
|
132
|
+
markdownLines.push('', `### ${changeTypes[type].changelog.title}`, '');
|
|
133
|
+
const changesInChronologicalOrder = group.reverse();
|
|
134
|
+
for (const change of changesInChronologicalOrder) {
|
|
135
|
+
const line = formatChange(change, changelogRenderOptions, isVersionPlans, repoData);
|
|
136
|
+
markdownLines.push(line + '\n');
|
|
137
|
+
if (change.isBreaking) {
|
|
138
|
+
const breakingChangeExplanation = extractBreakingChangeExplanation(change.body);
|
|
139
|
+
breakingChanges.push(breakingChangeExplanation
|
|
140
|
+
? `- ${change.scope ? `**${change.scope.trim()}:** ` : ''}${breakingChangeExplanation}`
|
|
141
|
+
: line);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
if (breakingChanges.length > 0) {
|
|
147
|
+
markdownLines.push('', '### ⚠️ Breaking Changes', '', ...breakingChanges);
|
|
148
|
+
}
|
|
149
|
+
if (dependencyBumps?.length) {
|
|
150
|
+
applyAdditionalDependencyBumps({
|
|
151
|
+
markdownLines,
|
|
152
|
+
dependencyBumps,
|
|
153
|
+
releaseVersion,
|
|
154
|
+
changelogRenderOptions,
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
if (changelogRenderOptions.authors) {
|
|
158
|
+
const _authors = new Map();
|
|
159
|
+
for (const change of [
|
|
160
|
+
...relevantChanges,
|
|
161
|
+
...additionalChangesForAuthorsSection,
|
|
162
|
+
]) {
|
|
163
|
+
if (!change.author) {
|
|
164
|
+
continue;
|
|
165
|
+
}
|
|
166
|
+
const name = formatName(change.author.name);
|
|
167
|
+
if (!name || name.includes('[bot]')) {
|
|
168
|
+
continue;
|
|
169
|
+
}
|
|
170
|
+
if (_authors.has(name)) {
|
|
171
|
+
const entry = _authors.get(name);
|
|
172
|
+
entry.email.add(change.author.email);
|
|
173
|
+
}
|
|
174
|
+
else {
|
|
175
|
+
_authors.set(name, { email: new Set([change.author.email]) });
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
// Try to map authors to github usernames
|
|
179
|
+
if (repoData && changelogRenderOptions.mapAuthorsToGitHubUsernames) {
|
|
180
|
+
await Promise.all([..._authors.keys()].map(async (authorName) => {
|
|
181
|
+
const meta = _authors.get(authorName);
|
|
182
|
+
for (const email of meta.email) {
|
|
183
|
+
// For these pseudo-anonymized emails we can just extract the Github username from before the @
|
|
184
|
+
// It could either be in the format: username@ or github_id+username@
|
|
185
|
+
if (email.endsWith('@users.noreply.github.com')) {
|
|
186
|
+
const match = email.match(/^(\d+\+)?([^@]+)@users\.noreply\.github\.com$/);
|
|
187
|
+
if (match && match[2]) {
|
|
188
|
+
meta.github = match[2];
|
|
189
|
+
break;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
// Look up any other emails against the ungh.cc API
|
|
193
|
+
const { data } = await axios
|
|
194
|
+
.get(`https://ungh.cc/users/find/${email}`)
|
|
195
|
+
.catch(() => ({ data: { user: null } }));
|
|
196
|
+
if (data?.user) {
|
|
197
|
+
meta.github = data.user.username;
|
|
198
|
+
break;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}));
|
|
202
|
+
}
|
|
203
|
+
const authors = [..._authors.entries()].map((e) => ({
|
|
204
|
+
name: e[0],
|
|
205
|
+
...e[1],
|
|
206
|
+
}));
|
|
207
|
+
if (authors.length > 0) {
|
|
208
|
+
markdownLines.push('', '### ' + '❤️ Thank You', '', ...authors
|
|
209
|
+
// Sort the contributors by name
|
|
210
|
+
.sort((a, b) => a.name.localeCompare(b.name))
|
|
211
|
+
.map((i) => {
|
|
212
|
+
// Tag the author's Github username if we were able to resolve it so that Github adds them as a contributor
|
|
213
|
+
const github = i.github ? ` @${i.github}` : '';
|
|
214
|
+
return `- ${i.name}${github}`;
|
|
215
|
+
}));
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
return markdownLines.join('\n').trim();
|
|
219
|
+
};
|
|
220
|
+
exports.default = defaultChangelogRenderer;
|
|
221
|
+
function applyAdditionalDependencyBumps({ markdownLines, dependencyBumps, releaseVersion, changelogRenderOptions, }) {
|
|
222
|
+
if (markdownLines.length === 0) {
|
|
223
|
+
markdownLines.push('', `${createVersionTitle(releaseVersion, changelogRenderOptions)}\n`, '');
|
|
224
|
+
}
|
|
225
|
+
else {
|
|
226
|
+
markdownLines.push('');
|
|
227
|
+
}
|
|
228
|
+
markdownLines.push('### 🧱 Updated Dependencies\n');
|
|
229
|
+
dependencyBumps.forEach(({ dependencyName, newVersion }) => {
|
|
230
|
+
markdownLines.push(`- Updated ${dependencyName} to ${newVersion}`);
|
|
231
|
+
});
|
|
232
|
+
markdownLines.push('');
|
|
233
|
+
}
|
|
234
|
+
function formatName(name = '') {
|
|
235
|
+
return name
|
|
236
|
+
.split(' ')
|
|
237
|
+
.map((p) => p.trim())
|
|
238
|
+
.join(' ');
|
|
239
|
+
}
|
|
240
|
+
function groupBy(items, key) {
|
|
241
|
+
const groups = {};
|
|
242
|
+
for (const item of items) {
|
|
243
|
+
groups[item[key]] = groups[item[key]] || [];
|
|
244
|
+
groups[item[key]].push(item);
|
|
245
|
+
}
|
|
246
|
+
return groups;
|
|
247
|
+
}
|
|
248
|
+
function formatChange(change, changelogRenderOptions, isVersionPlans, repoData) {
|
|
249
|
+
let description = change.description;
|
|
250
|
+
let extraLines = [];
|
|
251
|
+
let extraLinesStr = '';
|
|
252
|
+
if (description.includes('\n')) {
|
|
253
|
+
[description, ...extraLines] = description.split('\n');
|
|
254
|
+
// Align the extra lines with the start of the description for better readability
|
|
255
|
+
const indentation = ' ';
|
|
256
|
+
extraLinesStr = extraLines
|
|
257
|
+
.filter((l) => l.trim().length > 0)
|
|
258
|
+
.map((l) => `${indentation}${l}`)
|
|
259
|
+
.join('\n');
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* In version plans changelogs:
|
|
263
|
+
* - don't repeat the breaking change icon
|
|
264
|
+
* - don't render the scope
|
|
265
|
+
*/
|
|
266
|
+
let changeLine = '- ' +
|
|
267
|
+
(!isVersionPlans && change.isBreaking ? '⚠️ ' : '') +
|
|
268
|
+
(!isVersionPlans && change.scope ? `**${change.scope.trim()}:** ` : '') +
|
|
269
|
+
description;
|
|
270
|
+
if (repoData && changelogRenderOptions.commitReferences) {
|
|
271
|
+
changeLine += (0, github_1.formatReferences)(change.githubReferences, repoData);
|
|
272
|
+
}
|
|
273
|
+
if (extraLinesStr) {
|
|
274
|
+
changeLine += '\n\n' + extraLinesStr;
|
|
275
|
+
}
|
|
276
|
+
return changeLine;
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* It is common to add further information about a breaking change in the commit body,
|
|
280
|
+
* and it is naturally that information that should be included in the BREAKING CHANGES
|
|
281
|
+
* section of changelog, rather than repeating the commit title/description.
|
|
282
|
+
*/
|
|
283
|
+
function extractBreakingChangeExplanation(message) {
|
|
284
|
+
if (!message) {
|
|
285
|
+
return null;
|
|
286
|
+
}
|
|
287
|
+
const breakingChangeIdentifier = 'BREAKING CHANGE:';
|
|
288
|
+
const startIndex = message.indexOf(breakingChangeIdentifier);
|
|
289
|
+
if (startIndex === -1) {
|
|
290
|
+
// "BREAKING CHANGE:" not found in the message
|
|
291
|
+
return null;
|
|
292
|
+
}
|
|
293
|
+
const startOfBreakingChange = startIndex + breakingChangeIdentifier.length;
|
|
294
|
+
const endOfBreakingChange = message.indexOf('\n', startOfBreakingChange);
|
|
295
|
+
if (endOfBreakingChange === -1) {
|
|
296
|
+
// No newline character found, extract till the end of the message
|
|
297
|
+
return message.substring(startOfBreakingChange).trim();
|
|
298
|
+
}
|
|
299
|
+
// Extract and return the breaking change message
|
|
300
|
+
return message.substring(startOfBreakingChange, endOfBreakingChange).trim();
|
|
301
|
+
}
|
|
302
|
+
function createVersionTitle(version, changelogRenderOptions) {
|
|
303
|
+
// Normalize by removing any leading `v` during comparison
|
|
304
|
+
const isMajorVersion = `${(0, semver_1.major)(version)}.0.0` === version.replace(/^v/, '');
|
|
305
|
+
let maybeDateStr = '';
|
|
306
|
+
if (changelogRenderOptions.versionTitleDate) {
|
|
307
|
+
// YYYY-MM-DD
|
|
308
|
+
const dateStr = new Date().toISOString().slice(0, 10);
|
|
309
|
+
maybeDateStr = ` (${dateStr})`;
|
|
310
|
+
}
|
|
311
|
+
if (isMajorVersion) {
|
|
312
|
+
return `# ${version}${maybeDateStr}`;
|
|
313
|
+
}
|
|
314
|
+
return `## ${version}${maybeDateStr}`;
|
|
315
|
+
}
|
package/release/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.releaseVersion = exports.releasePublish = exports.releaseChangelog = exports.release = exports.ReleaseClient = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @public Programmatic API for nx release
|
|
6
|
+
*/
|
|
7
|
+
var release_1 = require("../src/command-line/release");
|
|
8
|
+
Object.defineProperty(exports, "ReleaseClient", { enumerable: true, get: function () { return release_1.ReleaseClient; } });
|
|
9
|
+
Object.defineProperty(exports, "release", { enumerable: true, get: function () { return release_1.release; } });
|
|
10
|
+
Object.defineProperty(exports, "releaseChangelog", { enumerable: true, get: function () { return release_1.releaseChangelog; } });
|
|
11
|
+
Object.defineProperty(exports, "releasePublish", { enumerable: true, get: function () { return release_1.releasePublish; } });
|
|
12
|
+
Object.defineProperty(exports, "releaseVersion", { enumerable: true, get: function () { return release_1.releaseVersion; } });
|