nx 19.4.3 → 19.5.0-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/bin/init-local.js +2 -3
- package/package.json +30 -26
- package/src/adapter/angular-json.js +6 -6
- package/src/adapter/decorate-cli.js +1 -2
- package/src/adapter/ngcli-adapter.js +8 -8
- package/src/adapter/rxjs-for-await.js +5 -5
- package/src/command-line/add/add.js +2 -2
- package/src/command-line/affected/affected.js +2 -3
- package/src/command-line/connect/connect-to-nx-cloud.js +5 -6
- package/src/command-line/connect/view-logs.js +1 -2
- package/src/command-line/daemon/daemon.js +1 -2
- package/src/command-line/exec/exec.js +1 -2
- package/src/command-line/format/format.js +1 -2
- package/src/command-line/generate/generate.js +4 -5
- package/src/command-line/generate/generator-utils.js +2 -3
- package/src/command-line/graph/command-object.js +2 -2
- package/src/command-line/graph/graph.js +9 -5
- package/src/command-line/init/implementation/add-nx-to-monorepo.js +1 -2
- package/src/command-line/init/implementation/add-nx-to-nest.js +1 -2
- package/src/command-line/init/implementation/add-nx-to-npm-repo.js +1 -2
- package/src/command-line/init/implementation/angular/index.js +1 -2
- package/src/command-line/init/implementation/angular/integrated-workspace.js +1 -2
- package/src/command-line/init/implementation/angular/legacy-angular-versions.js +1 -2
- package/src/command-line/init/implementation/angular/standalone-workspace.js +1 -2
- package/src/command-line/init/implementation/dot-nx/add-nx-scripts.d.ts +1 -1
- package/src/command-line/init/implementation/dot-nx/add-nx-scripts.js +7 -7
- package/src/command-line/init/implementation/react/add-craco-commands-to-package-scripts.js +1 -2
- package/src/command-line/init/implementation/react/add-vite-commands-to-package-scripts.js +1 -2
- package/src/command-line/init/implementation/react/check-for-custom-webpack-setup.js +1 -2
- package/src/command-line/init/implementation/react/check-for-uncommitted-changes.js +1 -2
- package/src/command-line/init/implementation/react/clean-up-files.js +1 -2
- package/src/command-line/init/implementation/react/index.js +1 -2
- package/src/command-line/init/implementation/react/read-name-from-package-json.js +1 -2
- package/src/command-line/init/implementation/react/rename-js-to-jsx.js +1 -2
- package/src/command-line/init/implementation/react/tsconfig-setup.js +1 -2
- package/src/command-line/init/implementation/react/write-craco-config.js +1 -2
- package/src/command-line/init/implementation/react/write-vite-config.js +1 -2
- package/src/command-line/init/implementation/react/write-vite-index-html.js +1 -2
- package/src/command-line/init/implementation/utils.js +10 -11
- package/src/command-line/init/init-v1.js +1 -2
- package/src/command-line/init/init-v2.js +1 -2
- package/src/command-line/list/list.js +1 -2
- package/src/command-line/migrate/migrate.d.ts +1 -1
- package/src/command-line/migrate/migrate.js +5 -5
- package/src/command-line/new/new.js +1 -2
- package/src/command-line/release/changelog.js +3 -3
- package/src/command-line/release/config/config.js +3 -3
- package/src/command-line/release/config/filter-release-groups.js +1 -2
- package/src/command-line/release/config/version-plans.js +3 -4
- package/src/command-line/release/plan.js +2 -2
- package/src/command-line/release/publish.js +2 -2
- package/src/command-line/release/release.js +2 -2
- package/src/command-line/release/utils/batch-projects-by-generator-config.js +1 -2
- package/src/command-line/release/utils/exec-command.js +1 -2
- package/src/command-line/release/utils/git.js +11 -12
- package/src/command-line/release/utils/github.js +5 -6
- package/src/command-line/release/utils/launch-editor.js +1 -2
- package/src/command-line/release/utils/markdown.js +1 -2
- package/src/command-line/release/utils/print-changes.d.ts +0 -1
- package/src/command-line/release/utils/print-changes.js +2 -3
- package/src/command-line/release/utils/resolve-changelog-renderer.js +1 -2
- package/src/command-line/release/utils/resolve-nx-json-error-message.js +1 -2
- package/src/command-line/release/utils/resolve-semver-specifier.js +2 -3
- package/src/command-line/release/utils/semver.js +4 -5
- package/src/command-line/release/utils/shared.js +6 -6
- package/src/command-line/release/version.js +2 -2
- package/src/command-line/repair/repair.js +1 -2
- package/src/command-line/report/report.js +7 -7
- package/src/command-line/reset/reset.js +1 -2
- package/src/command-line/run/executor-utils.js +2 -3
- package/src/command-line/run/run-one.js +1 -2
- package/src/command-line/run/run.js +5 -6
- package/src/command-line/run-many/run-many.js +2 -3
- package/src/command-line/show/project.js +1 -2
- package/src/command-line/show/projects.js +1 -2
- package/src/command-line/watch/watch.js +8 -2
- package/src/command-line/yargs-utils/documentation.js +1 -2
- package/src/command-line/yargs-utils/shared-options.js +12 -13
- package/src/commands-runner/create-command-graph.js +1 -2
- package/src/commands-runner/get-command-projects.js +1 -2
- package/src/config/calculate-default-project-name.js +2 -3
- package/src/config/configuration.js +2 -2
- package/src/config/nx-json.js +2 -3
- package/src/config/project-graph.js +3 -3
- package/src/config/schema-utils.js +3 -4
- package/src/config/to-project-name.js +1 -2
- package/src/core/graph/main.js +1 -1
- package/src/daemon/cache.js +6 -6
- package/src/daemon/client/client.d.ts +1 -2
- package/src/daemon/client/client.js +13 -1
- package/src/daemon/client/daemon-socket-messenger.d.ts +0 -1
- package/src/daemon/client/generate-help-output.js +1 -2
- package/src/daemon/is-on-daemon.js +1 -2
- package/src/daemon/message-types/get-context-file-data.js +2 -2
- package/src/daemon/message-types/get-files-in-directory.js +2 -2
- package/src/daemon/message-types/get-nx-workspace-files.js +2 -2
- package/src/daemon/message-types/glob.js +2 -2
- package/src/daemon/message-types/hash-glob.js +2 -2
- package/src/daemon/message-types/task-history.js +3 -3
- package/src/daemon/message-types/update-context-files.js +2 -2
- package/src/daemon/server/file-watching/changed-projects.js +1 -2
- package/src/daemon/server/file-watching/file-watcher-sockets.d.ts +0 -1
- package/src/daemon/server/file-watching/file-watcher-sockets.js +4 -4
- package/src/daemon/server/handle-context-file-data.js +1 -2
- package/src/daemon/server/handle-get-files-in-directory.js +1 -2
- package/src/daemon/server/handle-get-task-history.js +1 -2
- package/src/daemon/server/handle-glob.js +1 -2
- package/src/daemon/server/handle-hash-glob.js +1 -2
- package/src/daemon/server/handle-hash-tasks.js +1 -2
- package/src/daemon/server/handle-nx-workspace-files.js +1 -2
- package/src/daemon/server/handle-outputs-tracking.js +2 -3
- package/src/daemon/server/handle-process-in-background.js +1 -2
- package/src/daemon/server/handle-request-project-graph.js +1 -2
- package/src/daemon/server/handle-request-shutdown.d.ts +0 -1
- package/src/daemon/server/handle-request-shutdown.js +1 -2
- package/src/daemon/server/handle-write-task-runs-to-history.js +1 -2
- package/src/daemon/server/outputs-tracking.js +7 -8
- package/src/daemon/server/plugins.js +2 -3
- package/src/daemon/server/project-graph-incremental-recomputation.js +3 -3
- package/src/daemon/server/server.d.ts +0 -1
- package/src/daemon/server/server.js +2 -3
- package/src/daemon/server/shutdown-utils.d.ts +0 -1
- package/src/daemon/server/shutdown-utils.js +9 -9
- package/src/daemon/server/watcher.d.ts +0 -1
- package/src/daemon/server/watcher.js +3 -4
- package/src/daemon/socket-utils.js +3 -3
- package/src/daemon/tmp-dir.js +6 -6
- package/src/devkit-exports.d.ts +1 -0
- package/src/devkit-exports.js +3 -1
- package/src/executors/noop/noop.impl.js +1 -1
- package/src/executors/run-commands/run-commands.impl.js +3 -3
- package/src/executors/run-script/run-script.impl.js +1 -1
- package/src/executors/utils/convert-nx-executor.js +1 -2
- package/src/generators/internal-utils/format-changed-files-with-prettier-if-available.js +1 -2
- package/src/generators/testing-utils/create-tree-with-empty-workspace.d.ts +1 -1
- package/src/generators/testing-utils/create-tree-with-empty-workspace.js +2 -3
- package/src/generators/testing-utils/create-tree.js +1 -2
- package/src/generators/tree.d.ts +0 -2
- package/src/generators/tree.js +3 -3
- package/src/generators/utils/glob.js +2 -3
- package/src/generators/utils/json.js +3 -4
- package/src/generators/utils/nx-json.js +2 -3
- package/src/generators/utils/project-configuration.js +7 -7
- package/src/hasher/create-task-hasher.js +1 -2
- package/src/hasher/file-hasher.js +2 -3
- package/src/hasher/hash-task.d.ts +0 -1
- package/src/hasher/hash-task.js +2 -3
- package/src/hasher/native-task-hasher-impl.d.ts +0 -1
- package/src/hasher/node-task-hasher-impl.d.ts +0 -1
- package/src/hasher/task-hasher.d.ts +0 -1
- package/src/hasher/task-hasher.js +10 -10
- package/src/migrations/update-15-0-0/migrate-to-inputs.js +1 -1
- package/src/migrations/update-15-0-0/prefix-outputs.js +1 -1
- package/src/migrations/update-16-0-0/remove-nrwl-cli.js +1 -1
- package/src/migrations/update-16-0-0/update-depends-on-to-tokens.js +1 -1
- package/src/migrations/update-16-0-0/update-nx-cloud-runner.js +1 -1
- package/src/migrations/update-16-2-0/remove-run-commands-output-path.js +1 -1
- package/src/migrations/update-16-8-0/escape-dollar-sign-env-variables.js +1 -1
- package/src/migrations/update-16-9-0/remove-project-name-and-root-format.js +1 -1
- package/src/migrations/update-17-0-0/move-cache-directory.js +1 -1
- package/src/migrations/update-17-0-0/rm-default-collection-npm-scope.js +1 -1
- package/src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options.js +1 -1
- package/src/migrations/update-17-2-0/move-default-base.js +1 -1
- package/src/migrations/update-17-3-0/nx-release-path.js +2 -3
- package/src/migrations/update-17-3-0/update-nxw.js +1 -1
- package/src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces.js +1 -1
- package/src/migrations/update-19-2-0/move-workspace-data-directory.js +3 -4
- package/src/migrations/update-19-2-4/set-project-name.js +1 -1
- package/src/native/assert-supported-platform.js +1 -2
- package/src/native/browser.js +1 -0
- package/src/native/index.d.ts +178 -138
- package/src/native/index.js +16 -0
- package/src/native/native-bindings.js +352 -238
- package/src/native/native-file-cache-location.js +1 -2
- package/src/native/nx.wasi-browser.js +108 -0
- package/src/native/nx.wasi.cjs +139 -0
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/native/transform-objects.js +1 -2
- package/src/native/wasi-worker-browser.mjs +32 -0
- package/src/native/wasi-worker.mjs +63 -0
- package/src/nx-cloud/debug-logger.js +1 -2
- package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.js +1 -2
- package/src/nx-cloud/resolution-helpers.js +1 -2
- package/src/nx-cloud/update-manager.js +2 -2
- package/src/nx-cloud/utilities/axios.js +1 -2
- package/src/nx-cloud/utilities/get-cloud-options.js +1 -2
- package/src/nx-cloud/utilities/url-shorten.js +8 -9
- package/src/plugins/js/hasher/hasher.js +1 -2
- package/src/plugins/js/lock-file/lock-file.js +6 -6
- package/src/plugins/js/lock-file/npm-parser.js +3 -4
- package/src/plugins/js/lock-file/pnpm-parser.js +3 -4
- package/src/plugins/js/lock-file/project-graph-pruning.js +1 -2
- package/src/plugins/js/lock-file/utils/package-json.js +2 -3
- package/src/plugins/js/lock-file/utils/pnpm-normalizer.js +5 -6
- package/src/plugins/js/lock-file/yarn-parser.js +3 -4
- package/src/plugins/js/package-json/create-package-json.js +2 -3
- package/src/plugins/js/project-graph/build-dependencies/build-dependencies.js +1 -2
- package/src/plugins/js/project-graph/build-dependencies/explicit-package-json-dependencies.js +1 -2
- package/src/plugins/js/project-graph/build-dependencies/explicit-project-dependencies.js +1 -2
- package/src/plugins/js/project-graph/build-dependencies/strip-source-code.js +1 -2
- package/src/plugins/js/project-graph/build-dependencies/target-project-locator.js +2 -2
- package/src/plugins/js/project-graph/build-nodes/build-npm-package-nodes.js +1 -2
- package/src/plugins/js/utils/config.js +1 -2
- package/src/plugins/js/utils/register.d.ts +1 -0
- package/src/plugins/js/utils/register.js +7 -8
- package/src/plugins/js/utils/resolve-relative-to-dir.js +1 -2
- package/src/plugins/js/utils/typescript.js +5 -6
- package/src/plugins/js/versions.d.ts +1 -1
- package/src/plugins/js/versions.js +1 -1
- package/src/plugins/package-json-workspaces/create-nodes.js +5 -5
- package/src/plugins/project-json/build-nodes/project-json.js +3 -3
- package/src/project-graph/affected/affected-project-graph.js +1 -2
- package/src/project-graph/build-project-graph.js +3 -4
- package/src/project-graph/error-types.js +11 -11
- package/src/project-graph/file-map-utils.js +4 -5
- package/src/project-graph/file-utils.d.ts +1 -1
- package/src/project-graph/file-utils.js +7 -7
- package/src/project-graph/nx-deps-cache.js +8 -8
- package/src/project-graph/operators.js +5 -5
- package/src/project-graph/plugins/internal-api.js +4 -5
- package/src/project-graph/plugins/isolation/index.js +1 -2
- package/src/project-graph/plugins/isolation/messaging.d.ts +0 -2
- package/src/project-graph/plugins/isolation/messaging.js +4 -5
- package/src/project-graph/plugins/isolation/plugin-pool.js +1 -2
- package/src/project-graph/plugins/loader.js +7 -7
- package/src/project-graph/plugins/utils.js +4 -5
- package/src/project-graph/project-graph-builder.js +2 -2
- package/src/project-graph/project-graph.js +7 -8
- package/src/project-graph/utils/build-all-workspace-files.js +1 -2
- package/src/project-graph/utils/find-project-for-path.js +4 -5
- package/src/project-graph/utils/implicit-project-dependencies.js +1 -2
- package/src/project-graph/utils/normalize-project-nodes.js +2 -3
- package/src/project-graph/utils/project-configuration-utils.d.ts +8 -6
- package/src/project-graph/utils/project-configuration-utils.js +118 -54
- package/src/project-graph/utils/retrieve-workspace-files.d.ts +3 -3
- package/src/project-graph/utils/retrieve-workspace-files.js +6 -7
- package/src/tasks-runner/create-task-graph.js +3 -3
- package/src/tasks-runner/forked-process-task-runner.d.ts +0 -1
- package/src/tasks-runner/init-tasks-runner.js +1 -2
- package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.js +1 -2
- package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.js +1 -2
- package/src/tasks-runner/life-cycles/formatting-utils.js +2 -3
- package/src/tasks-runner/life-cycles/pretty-time.js +1 -2
- package/src/tasks-runner/life-cycles/view-logs-utils.js +1 -2
- package/src/tasks-runner/pseudo-ipc.d.ts +0 -1
- package/src/tasks-runner/pseudo-terminal.d.ts +0 -1
- package/src/tasks-runner/pseudo-terminal.js +5 -2
- package/src/tasks-runner/run-command.js +4 -5
- package/src/tasks-runner/task-env.d.ts +0 -1
- package/src/tasks-runner/task-env.js +5 -6
- package/src/tasks-runner/task-graph-utils.js +2 -3
- package/src/tasks-runner/utils.js +25 -26
- package/src/utils/ab-testing.js +2 -2
- package/src/utils/all-file-data.js +1 -2
- package/src/utils/assert-workspace-validity.js +1 -2
- package/src/utils/async-iterator.js +2 -3
- package/src/utils/cache-directory.js +2 -2
- package/src/utils/child-process.d.ts +0 -1
- package/src/utils/child-process.js +3 -3
- package/src/utils/chunkify.js +1 -2
- package/src/utils/code-frames.js +1 -2
- package/src/utils/collapse-expanded-outputs.js +1 -2
- package/src/utils/command-line-utils.js +5 -6
- package/src/utils/consume-messages-from-socket.js +1 -2
- package/src/utils/default-base.js +1 -2
- package/src/utils/dotenv.js +1 -2
- package/src/utils/exit-codes.d.ts +0 -1
- package/src/utils/exit-codes.js +1 -2
- package/src/utils/fileutils.d.ts +0 -1
- package/src/utils/fileutils.js +9 -10
- package/src/utils/find-matching-projects.js +2 -2
- package/src/utils/find-workspace-root.js +1 -2
- package/src/utils/get-package-name-from-import-path.js +1 -2
- package/src/utils/git-utils.js +4 -5
- package/src/utils/globs.js +1 -2
- package/src/utils/ignore.js +4 -4
- package/src/utils/installation-directory.js +2 -3
- package/src/utils/is-ci.js +1 -2
- package/src/utils/json-diff.js +5 -5
- package/src/utils/json.js +3 -3
- package/src/utils/logger.js +2 -2
- package/src/utils/nx-cloud-utils.js +3 -4
- package/src/utils/nx-plugin.deprecated.js +1 -4
- package/src/utils/object-sort.js +1 -2
- package/src/utils/package-json.js +8 -9
- package/src/utils/package-manager.js +13 -14
- package/src/utils/params.js +14 -14
- package/src/utils/path.js +3 -4
- package/src/utils/plugins/community-plugins.js +1 -2
- package/src/utils/plugins/core-plugins.js +2 -3
- package/src/utils/plugins/installed-plugins.js +3 -4
- package/src/utils/plugins/local-plugins.js +2 -3
- package/src/utils/plugins/plugin-capabilities.js +2 -3
- package/src/utils/plugins/shared.js +1 -2
- package/src/utils/print-help.js +1 -2
- package/src/utils/project-graph-utils.js +4 -5
- package/src/utils/serializable-error.js +1 -2
- package/src/utils/serialize-overrides-into-command-line.js +1 -2
- package/src/utils/serialize-target.js +1 -2
- package/src/utils/split-target.js +2 -3
- package/src/utils/strip-indents.js +1 -2
- package/src/utils/task-history.js +3 -3
- package/src/utils/update-nxw.js +1 -2
- package/src/utils/workspace-configuration-check.js +1 -2
- package/src/utils/workspace-context.js +10 -11
- package/src/utils/workspace-root.js +3 -3
- package/src/plugins/target-defaults/symbols.d.ts +0 -17
- package/src/plugins/target-defaults/symbols.js +0 -20
- package/src/plugins/target-defaults/target-defaults-plugin.d.ts +0 -121
- package/src/plugins/target-defaults/target-defaults-plugin.js +0 -176
@@ -1,6 +1,30 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.getDependencyConfigs = getDependencyConfigs;
|
4
|
+
exports.normalizeDependencyConfigDefinition = normalizeDependencyConfigDefinition;
|
5
|
+
exports.normalizeDependencyConfigProjects = normalizeDependencyConfigProjects;
|
6
|
+
exports.expandDependencyConfigSyntaxSugar = expandDependencyConfigSyntaxSugar;
|
7
|
+
exports.expandWildcardTargetConfiguration = expandWildcardTargetConfiguration;
|
8
|
+
exports.readProjectAndTargetFromTargetString = readProjectAndTargetFromTargetString;
|
9
|
+
exports.getOutputs = getOutputs;
|
10
|
+
exports.normalizeTargetDependencyWithStringProjects = normalizeTargetDependencyWithStringProjects;
|
11
|
+
exports.validateOutputs = validateOutputs;
|
12
|
+
exports.transformLegacyOutputs = transformLegacyOutputs;
|
13
|
+
exports.getOutputsForTargetAndConfiguration = getOutputsForTargetAndConfiguration;
|
14
|
+
exports.interpolate = interpolate;
|
15
|
+
exports.getTargetConfigurationForTask = getTargetConfigurationForTask;
|
16
|
+
exports.getExecutorNameForTask = getExecutorNameForTask;
|
17
|
+
exports.getExecutorForTask = getExecutorForTask;
|
18
|
+
exports.getCustomHasher = getCustomHasher;
|
19
|
+
exports.removeTasksFromTaskGraph = removeTasksFromTaskGraph;
|
20
|
+
exports.removeIdsFromGraph = removeIdsFromGraph;
|
21
|
+
exports.calculateReverseDeps = calculateReverseDeps;
|
22
|
+
exports.getCliPath = getCliPath;
|
23
|
+
exports.getPrintableCommandArgsForTask = getPrintableCommandArgsForTask;
|
24
|
+
exports.getSerializedArgsForTask = getSerializedArgsForTask;
|
25
|
+
exports.shouldStreamOutput = shouldStreamOutput;
|
26
|
+
exports.isCacheableTask = isCacheableTask;
|
27
|
+
exports.unparse = unparse;
|
4
28
|
const path_1 = require("path");
|
5
29
|
const posix_1 = require("path/posix");
|
6
30
|
const workspace_root_1 = require("../utils/workspace-root");
|
@@ -19,11 +43,9 @@ function getDependencyConfigs({ project, target }, extraTargetDependencies, proj
|
|
19
43
|
[]).flatMap((config) => normalizeDependencyConfigDefinition(config, project, projectGraph, allTargetNames));
|
20
44
|
return dependencyConfigs;
|
21
45
|
}
|
22
|
-
exports.getDependencyConfigs = getDependencyConfigs;
|
23
46
|
function normalizeDependencyConfigDefinition(definition, currentProject, graph, allTargetNames) {
|
24
47
|
return expandWildcardTargetConfiguration(normalizeDependencyConfigProjects(expandDependencyConfigSyntaxSugar(definition, graph), currentProject, graph), allTargetNames);
|
25
48
|
}
|
26
|
-
exports.normalizeDependencyConfigDefinition = normalizeDependencyConfigDefinition;
|
27
49
|
function normalizeDependencyConfigProjects(dependencyConfig, currentProject, graph) {
|
28
50
|
const noStringConfig = normalizeTargetDependencyWithStringProjects(dependencyConfig);
|
29
51
|
if (noStringConfig.projects) {
|
@@ -34,7 +56,6 @@ function normalizeDependencyConfigProjects(dependencyConfig, currentProject, gra
|
|
34
56
|
}
|
35
57
|
return dependencyConfig;
|
36
58
|
}
|
37
|
-
exports.normalizeDependencyConfigProjects = normalizeDependencyConfigProjects;
|
38
59
|
function expandDependencyConfigSyntaxSugar(dependencyConfigString, graph) {
|
39
60
|
if (typeof dependencyConfigString !== 'string') {
|
40
61
|
return dependencyConfigString;
|
@@ -53,7 +74,6 @@ function expandDependencyConfigSyntaxSugar(dependencyConfigString, graph) {
|
|
53
74
|
const { projects, target } = readProjectAndTargetFromTargetString(targetString, graph.nodes);
|
54
75
|
return projects ? { projects, target } : { target };
|
55
76
|
}
|
56
|
-
exports.expandDependencyConfigSyntaxSugar = expandDependencyConfigSyntaxSugar;
|
57
77
|
// Weakmap let's the cache get cleared by garbage collector if allTargetNames is no longer used
|
58
78
|
const patternResultCache = new WeakMap();
|
59
79
|
function expandWildcardTargetConfiguration(dependencyConfig, allTargetNames) {
|
@@ -78,7 +98,6 @@ function expandWildcardTargetConfiguration(dependencyConfig, allTargetNames) {
|
|
78
98
|
cache.set(dependencyConfig.target, result);
|
79
99
|
return result;
|
80
100
|
}
|
81
|
-
exports.expandWildcardTargetConfiguration = expandWildcardTargetConfiguration;
|
82
101
|
function readProjectAndTargetFromTargetString(targetString, projects) {
|
83
102
|
// Support for both `project:target` and `target:with:colons` syntax
|
84
103
|
const [maybeProject, ...segments] = (0, split_target_1.splitByColons)(targetString);
|
@@ -97,11 +116,9 @@ function readProjectAndTargetFromTargetString(targetString, projects) {
|
|
97
116
|
return { target: targetString };
|
98
117
|
}
|
99
118
|
}
|
100
|
-
exports.readProjectAndTargetFromTargetString = readProjectAndTargetFromTargetString;
|
101
119
|
function getOutputs(p, target, overrides) {
|
102
120
|
return getOutputsForTargetAndConfiguration(target, overrides, p[target.project]);
|
103
121
|
}
|
104
|
-
exports.getOutputs = getOutputs;
|
105
122
|
function normalizeTargetDependencyWithStringProjects(dependencyConfig) {
|
106
123
|
if (typeof dependencyConfig.projects === 'string') {
|
107
124
|
/** LERNA SUPPORT START - Remove in v20 */
|
@@ -127,7 +144,6 @@ function normalizeTargetDependencyWithStringProjects(dependencyConfig) {
|
|
127
144
|
}
|
128
145
|
return dependencyConfig;
|
129
146
|
}
|
130
|
-
exports.normalizeTargetDependencyWithStringProjects = normalizeTargetDependencyWithStringProjects;
|
131
147
|
class InvalidOutputsError extends Error {
|
132
148
|
constructor(outputs, invalidOutputs) {
|
133
149
|
super(InvalidOutputsError.createMessage(invalidOutputs));
|
@@ -167,7 +183,6 @@ function validateOutputs(outputs) {
|
|
167
183
|
throw new InvalidOutputsError(outputs, invalidOutputs);
|
168
184
|
}
|
169
185
|
}
|
170
|
-
exports.validateOutputs = validateOutputs;
|
171
186
|
function transformLegacyOutputs(projectRoot, error) {
|
172
187
|
return error.outputs.map((output) => {
|
173
188
|
if (!error.invalidOutputs.has(output)) {
|
@@ -184,7 +199,6 @@ function transformLegacyOutputs(projectRoot, error) {
|
|
184
199
|
(0, path_2.joinPathFragments)(isWithinProject ? '{projectRoot}' : '{workspaceRoot}', isWithinProject ? relativePath : outputPath));
|
185
200
|
});
|
186
201
|
}
|
187
|
-
exports.transformLegacyOutputs = transformLegacyOutputs;
|
188
202
|
/**
|
189
203
|
* Returns the list of outputs that will be cached.
|
190
204
|
*/
|
@@ -230,7 +244,6 @@ function getOutputsForTargetAndConfiguration(taskTargetOrTask, overridesOrNode,
|
|
230
244
|
return [];
|
231
245
|
}
|
232
246
|
}
|
233
|
-
exports.getOutputsForTargetAndConfiguration = getOutputsForTargetAndConfiguration;
|
234
247
|
/**
|
235
248
|
* Matches portions of a string which need to be interpolated.
|
236
249
|
* Matches anything within curly braces, excluding the braces.
|
@@ -250,7 +263,6 @@ function interpolate(template, data) {
|
|
250
263
|
const parts = template.split('/').map((s) => _interpolate(s, data));
|
251
264
|
return (0, posix_1.join)(...parts).replace('{workspaceRoot}/', '');
|
252
265
|
}
|
253
|
-
exports.interpolate = interpolate;
|
254
266
|
function _interpolate(template, data) {
|
255
267
|
let res = template;
|
256
268
|
if (data.projectRoot == '.') {
|
@@ -272,22 +284,18 @@ function getTargetConfigurationForTask(task, projectGraph) {
|
|
272
284
|
const project = projectGraph.nodes[task.target.project].data;
|
273
285
|
return project.targets[task.target.target];
|
274
286
|
}
|
275
|
-
exports.getTargetConfigurationForTask = getTargetConfigurationForTask;
|
276
287
|
function getExecutorNameForTask(task, projectGraph) {
|
277
288
|
return getTargetConfigurationForTask(task, projectGraph)?.executor;
|
278
289
|
}
|
279
|
-
exports.getExecutorNameForTask = getExecutorNameForTask;
|
280
290
|
function getExecutorForTask(task, projectGraph) {
|
281
291
|
const executor = getExecutorNameForTask(task, projectGraph);
|
282
292
|
const [nodeModule, executorName] = executor.split(':');
|
283
293
|
return (0, executor_utils_1.getExecutorInformation)(nodeModule, executorName, workspace_root_1.workspaceRoot, (0, project_graph_1.readProjectsConfigurationFromProjectGraph)(projectGraph).projects);
|
284
294
|
}
|
285
|
-
exports.getExecutorForTask = getExecutorForTask;
|
286
295
|
function getCustomHasher(task, projectGraph) {
|
287
296
|
const factory = getExecutorForTask(task, projectGraph).hasherFactory;
|
288
297
|
return factory ? factory() : null;
|
289
298
|
}
|
290
|
-
exports.getCustomHasher = getCustomHasher;
|
291
299
|
function removeTasksFromTaskGraph(graph, ids) {
|
292
300
|
const newGraph = removeIdsFromGraph(graph, ids, graph.tasks);
|
293
301
|
return {
|
@@ -296,7 +304,6 @@ function removeTasksFromTaskGraph(graph, ids) {
|
|
296
304
|
tasks: newGraph.mapWithIds,
|
297
305
|
};
|
298
306
|
}
|
299
|
-
exports.removeTasksFromTaskGraph = removeTasksFromTaskGraph;
|
300
307
|
function removeIdsFromGraph(graph, ids, mapWithIds) {
|
301
308
|
const filteredMapWithIds = {};
|
302
309
|
const dependencies = {};
|
@@ -313,7 +320,6 @@ function removeIdsFromGraph(graph, ids, mapWithIds) {
|
|
313
320
|
roots: Object.keys(dependencies).filter((k) => dependencies[k].length === 0),
|
314
321
|
};
|
315
322
|
}
|
316
|
-
exports.removeIdsFromGraph = removeIdsFromGraph;
|
317
323
|
function calculateReverseDeps(taskGraph) {
|
318
324
|
const reverseTaskDeps = {};
|
319
325
|
Object.keys(taskGraph.tasks).forEach((t) => {
|
@@ -326,11 +332,9 @@ function calculateReverseDeps(taskGraph) {
|
|
326
332
|
});
|
327
333
|
return reverseTaskDeps;
|
328
334
|
}
|
329
|
-
exports.calculateReverseDeps = calculateReverseDeps;
|
330
335
|
function getCliPath() {
|
331
336
|
return require.resolve(`../../bin/run-executor.js`);
|
332
337
|
}
|
333
|
-
exports.getCliPath = getCliPath;
|
334
338
|
function getPrintableCommandArgsForTask(task) {
|
335
339
|
const args = task.overrides['__overrides_unparsed__'];
|
336
340
|
const target = task.target.target.includes(':')
|
@@ -341,7 +345,6 @@ function getPrintableCommandArgsForTask(task) {
|
|
341
345
|
: '';
|
342
346
|
return ['run', `${task.target.project}:${target}${config}`, ...args];
|
343
347
|
}
|
344
|
-
exports.getPrintableCommandArgsForTask = getPrintableCommandArgsForTask;
|
345
348
|
function getSerializedArgsForTask(task, isVerbose) {
|
346
349
|
return [
|
347
350
|
JSON.stringify({
|
@@ -351,7 +354,6 @@ function getSerializedArgsForTask(task, isVerbose) {
|
|
351
354
|
}),
|
352
355
|
];
|
353
356
|
}
|
354
|
-
exports.getSerializedArgsForTask = getSerializedArgsForTask;
|
355
357
|
function shouldStreamOutput(task, initiatingProject) {
|
356
358
|
if (process.env.NX_STREAM_OUTPUT === 'true')
|
357
359
|
return true;
|
@@ -361,7 +363,6 @@ function shouldStreamOutput(task, initiatingProject) {
|
|
361
363
|
return true;
|
362
364
|
return false;
|
363
365
|
}
|
364
|
-
exports.shouldStreamOutput = shouldStreamOutput;
|
365
366
|
function isCacheableTask(task, options) {
|
366
367
|
if (task.cache !== undefined && !longRunningTask(task)) {
|
367
368
|
return task.cache;
|
@@ -371,7 +372,6 @@ function isCacheableTask(task, options) {
|
|
371
372
|
cacheable.indexOf(task.target.target) > -1 &&
|
372
373
|
!longRunningTask(task));
|
373
374
|
}
|
374
|
-
exports.isCacheableTask = isCacheableTask;
|
375
375
|
function longRunningTask(task) {
|
376
376
|
const t = task.target.target;
|
377
377
|
return ((!!task.overrides['watch'] && task.overrides['watch'] !== 'false') ||
|
@@ -385,4 +385,3 @@ function longRunningTask(task) {
|
|
385
385
|
function unparse(options) {
|
386
386
|
return (0, serialize_overrides_into_command_line_1.serializeOverridesIntoCommandLine)(options);
|
387
387
|
}
|
388
|
-
exports.unparse = unparse;
|
package/src/utils/ab-testing.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.messages = exports.PromptMessages = void 0;
|
4
|
+
exports.recordStat = recordStat;
|
4
5
|
const node_child_process_1 = require("node:child_process");
|
5
6
|
const is_ci_1 = require("./is-ci");
|
6
7
|
const package_manager_1 = require("./package-manager");
|
@@ -87,7 +88,6 @@ async function recordStat(opts) {
|
|
87
88
|
}
|
88
89
|
}
|
89
90
|
}
|
90
|
-
exports.recordStat = recordStat;
|
91
91
|
function shouldRecordStats() {
|
92
92
|
const pmc = (0, package_manager_1.getPackageManagerCommand)();
|
93
93
|
if (!pmc.getRegistryUrl) {
|
@@ -1,9 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.allFileData =
|
3
|
+
exports.allFileData = allFileData;
|
4
4
|
const workspace_context_1 = require("./workspace-context");
|
5
5
|
const workspace_root_1 = require("./workspace-root");
|
6
6
|
function allFileData() {
|
7
7
|
return (0, workspace_context_1.getAllFileDataInContext)(workspace_root_1.workspaceRoot);
|
8
8
|
}
|
9
|
-
exports.allFileData = allFileData;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.assertWorkspaceValidity =
|
3
|
+
exports.assertWorkspaceValidity = assertWorkspaceValidity;
|
4
4
|
const find_matching_projects_1 = require("./find-matching-projects");
|
5
5
|
const output_1 = require("./output");
|
6
6
|
const devkit_internals_1 = require("../devkit-internals");
|
@@ -70,7 +70,6 @@ function assertWorkspaceValidity(projects, nxJson) {
|
|
70
70
|
}
|
71
71
|
throw new devkit_internals_1.WorkspaceValidityError(message);
|
72
72
|
}
|
73
|
-
exports.assertWorkspaceValidity = assertWorkspaceValidity;
|
74
73
|
function detectAndSetInvalidProjectGlobValues(map, sourceName, desiredImplicitDeps, projectConfigurations, projects) {
|
75
74
|
const invalidProjectsOrGlobs = desiredImplicitDeps.filter((implicit) => {
|
76
75
|
const projectName = implicit.startsWith('!')
|
@@ -1,10 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.isAsyncIterator = isAsyncIterator;
|
4
|
+
exports.getLastValueFromAsyncIterableIterator = getLastValueFromAsyncIterableIterator;
|
4
5
|
function isAsyncIterator(v) {
|
5
6
|
return typeof v?.[Symbol.asyncIterator] === 'function';
|
6
7
|
}
|
7
|
-
exports.isAsyncIterator = isAsyncIterator;
|
8
8
|
async function getLastValueFromAsyncIterableIterator(i) {
|
9
9
|
let prev;
|
10
10
|
let current;
|
@@ -16,4 +16,3 @@ async function getLastValueFromAsyncIterableIterator(i) {
|
|
16
16
|
} while (!current.done);
|
17
17
|
return current.value !== undefined || !prev ? current.value : prev.value;
|
18
18
|
}
|
19
|
-
exports.getLastValueFromAsyncIterableIterator = getLastValueFromAsyncIterableIterator;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.workspaceDataDirectory = exports.
|
3
|
+
exports.workspaceDataDirectory = exports.cacheDir = void 0;
|
4
|
+
exports.cacheDirectoryForWorkspace = cacheDirectoryForWorkspace;
|
4
5
|
const fs_1 = require("fs");
|
5
6
|
const path_1 = require("path");
|
6
7
|
const fileutils_1 = require("./fileutils");
|
@@ -61,7 +62,6 @@ exports.cacheDir = cacheDirectory(workspace_root_1.workspaceRoot, readCacheDirec
|
|
61
62
|
function cacheDirectoryForWorkspace(workspaceRoot) {
|
62
63
|
return cacheDirectory(workspaceRoot, readCacheDirectoryProperty(workspaceRoot));
|
63
64
|
}
|
64
|
-
exports.cacheDirectoryForWorkspace = cacheDirectoryForWorkspace;
|
65
65
|
exports.workspaceDataDirectory = absolutePath(workspace_root_1.workspaceRoot, process.env.NX_WORKSPACE_DATA_DIRECTORY ??
|
66
66
|
process.env.NX_PROJECT_GRAPH_CACHE_DIRECTORY ??
|
67
67
|
defaultWorkspaceDataDirectory(workspace_root_1.workspaceRoot));
|
@@ -1,6 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.PseudoTtyProcess =
|
3
|
+
exports.PseudoTtyProcess = void 0;
|
4
|
+
exports.runNxSync = runNxSync;
|
5
|
+
exports.runNxAsync = runNxAsync;
|
4
6
|
const child_process_1 = require("child_process");
|
5
7
|
const fs_1 = require("fs");
|
6
8
|
const path_1 = require("path");
|
@@ -24,7 +26,6 @@ function runNxSync(cmd, options) {
|
|
24
26
|
}
|
25
27
|
(0, child_process_1.execSync)(`${baseCmd} ${cmd}`, options);
|
26
28
|
}
|
27
|
-
exports.runNxSync = runNxSync;
|
28
29
|
async function runNxAsync(cmd, options) {
|
29
30
|
let baseCmd;
|
30
31
|
if ((0, fs_1.existsSync)((0, path_1.join)(workspace_root_1.workspaceRoot, 'package.json'))) {
|
@@ -60,7 +61,6 @@ async function runNxAsync(cmd, options) {
|
|
60
61
|
}
|
61
62
|
});
|
62
63
|
}
|
63
|
-
exports.runNxAsync = runNxAsync;
|
64
64
|
function messageToCode(message) {
|
65
65
|
if (message.startsWith('Terminated by ')) {
|
66
66
|
switch (message.replace('Terminated by ', '').trim()) {
|
package/src/utils/chunkify.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.chunkify =
|
3
|
+
exports.chunkify = chunkify;
|
4
4
|
const child_process_1 = require("child_process");
|
5
5
|
const TERMINAL_SIZE = process.platform === 'win32' ? 8192 : getUnixTerminalSize();
|
6
6
|
function chunkify(target, maxChunkLength = TERMINAL_SIZE - 500) {
|
@@ -23,7 +23,6 @@ function chunkify(target, maxChunkLength = TERMINAL_SIZE - 500) {
|
|
23
23
|
chunks.push(currentChunk);
|
24
24
|
return chunks;
|
25
25
|
}
|
26
|
-
exports.chunkify = chunkify;
|
27
26
|
function getUnixTerminalSize() {
|
28
27
|
try {
|
29
28
|
const argMax = (0, child_process_1.execSync)('getconf ARG_MAX').toString().trim();
|
package/src/utils/code-frames.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.codeFrameColumns =
|
3
|
+
exports.codeFrameColumns = codeFrameColumns;
|
4
4
|
// Adapted from https://raw.githubusercontent.com/babel/babel/4108524/packages/babel-code-frame/src/index.js
|
5
5
|
const chalk = require("chalk");
|
6
6
|
/**
|
@@ -116,4 +116,3 @@ function codeFrameColumns(rawLines, loc, opts = {}) {
|
|
116
116
|
.join('\n');
|
117
117
|
return chalk.reset(frame);
|
118
118
|
}
|
119
|
-
exports.codeFrameColumns = codeFrameColumns;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.collapseExpandedOutputs =
|
3
|
+
exports.collapseExpandedOutputs = collapseExpandedOutputs;
|
4
4
|
const path_1 = require("path");
|
5
5
|
/**
|
6
6
|
* Heuristic to prevent writing too many hash files
|
@@ -38,4 +38,3 @@ function collapseExpandedOutputs(expandedOutputs) {
|
|
38
38
|
// If the first level has too many outputs, return that one.
|
39
39
|
return Array.from(tree[Math.max(0, j - 1)]);
|
40
40
|
}
|
41
|
-
exports.collapseExpandedOutputs = collapseExpandedOutputs;
|
@@ -1,6 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.createOverrides = createOverrides;
|
4
|
+
exports.splitArgsIntoNxArgsAndOverrides = splitArgsIntoNxArgsAndOverrides;
|
5
|
+
exports.parseFiles = parseFiles;
|
6
|
+
exports.getProjectRoots = getProjectRoots;
|
7
|
+
exports.readGraphFileFromGraphArg = readGraphFileFromGraphArg;
|
4
8
|
const yargsParser = require("yargs-parser");
|
5
9
|
const file_utils_1 = require("../project-graph/file-utils");
|
6
10
|
const output_1 = require("./output");
|
@@ -19,7 +23,6 @@ function createOverrides(__overrides_unparsed__ = []) {
|
|
19
23
|
overrides.__overrides_unparsed__ = __overrides_unparsed__;
|
20
24
|
return overrides;
|
21
25
|
}
|
22
|
-
exports.createOverrides = createOverrides;
|
23
26
|
function splitArgsIntoNxArgsAndOverrides(args, mode, options = { printWarnings: true }, nxJson) {
|
24
27
|
// this is to lerna case when this function is invoked imperatively
|
25
28
|
if (args['target'] && !args['targets']) {
|
@@ -127,7 +130,6 @@ function splitArgsIntoNxArgsAndOverrides(args, mode, options = { printWarnings:
|
|
127
130
|
}
|
128
131
|
return { nxArgs, overrides };
|
129
132
|
}
|
130
|
-
exports.splitArgsIntoNxArgsAndOverrides = splitArgsIntoNxArgsAndOverrides;
|
131
133
|
function normalizeNxArgsRunner(nxArgs, nxJson, options) {
|
132
134
|
if (!nxArgs.runner) {
|
133
135
|
// TODO: Remove NX_RUNNER environment variable support in Nx v17
|
@@ -201,7 +203,6 @@ function parseFiles(options) {
|
|
201
203
|
};
|
202
204
|
}
|
203
205
|
}
|
204
|
-
exports.parseFiles = parseFiles;
|
205
206
|
function getUncommittedFiles() {
|
206
207
|
return parseGitOutput(`git diff --name-only --no-renames --relative HEAD .`);
|
207
208
|
}
|
@@ -246,10 +247,8 @@ function parseGitOutput(command) {
|
|
246
247
|
function getProjectRoots(projectNames, { nodes }) {
|
247
248
|
return projectNames.map((name) => nodes[name].data.root);
|
248
249
|
}
|
249
|
-
exports.getProjectRoots = getProjectRoots;
|
250
250
|
function readGraphFileFromGraphArg({ graph }) {
|
251
251
|
return typeof graph === 'string' && graph !== 'true' && graph !== ''
|
252
252
|
? graph
|
253
253
|
: undefined;
|
254
254
|
}
|
255
|
-
exports.readGraphFileFromGraphArg = readGraphFileFromGraphArg;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.consumeMessagesFromSocket =
|
3
|
+
exports.consumeMessagesFromSocket = consumeMessagesFromSocket;
|
4
4
|
function consumeMessagesFromSocket(callback) {
|
5
5
|
let message = '';
|
6
6
|
return (data) => {
|
@@ -19,4 +19,3 @@ function consumeMessagesFromSocket(callback) {
|
|
19
19
|
}
|
20
20
|
};
|
21
21
|
}
|
22
|
-
exports.consumeMessagesFromSocket = consumeMessagesFromSocket;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.deduceDefaultBase =
|
3
|
+
exports.deduceDefaultBase = deduceDefaultBase;
|
4
4
|
const child_process_1 = require("child_process");
|
5
5
|
function deduceDefaultBase() {
|
6
6
|
const nxDefaultBase = 'main';
|
@@ -12,4 +12,3 @@ function deduceDefaultBase() {
|
|
12
12
|
return nxDefaultBase;
|
13
13
|
}
|
14
14
|
}
|
15
|
-
exports.deduceDefaultBase = deduceDefaultBase;
|
package/src/utils/dotenv.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.loadRootEnvFiles =
|
3
|
+
exports.loadRootEnvFiles = loadRootEnvFiles;
|
4
4
|
const dotenv_1 = require("dotenv");
|
5
5
|
const dotenv_expand_1 = require("dotenv-expand");
|
6
6
|
const workspace_root_1 = require("./workspace-root");
|
@@ -19,4 +19,3 @@ function loadRootEnvFiles(root = workspace_root_1.workspaceRoot) {
|
|
19
19
|
(0, dotenv_expand_1.expand)(myEnv);
|
20
20
|
}
|
21
21
|
}
|
22
|
-
exports.loadRootEnvFiles = loadRootEnvFiles;
|
package/src/utils/exit-codes.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.signalToCode =
|
3
|
+
exports.signalToCode = signalToCode;
|
4
4
|
/**
|
5
5
|
* Translates NodeJS signals to numeric exit code
|
6
6
|
* @param signal
|
@@ -17,4 +17,3 @@ function signalToCode(signal) {
|
|
17
17
|
return 128;
|
18
18
|
}
|
19
19
|
}
|
20
|
-
exports.signalToCode = signalToCode;
|
package/src/utils/fileutils.d.ts
CHANGED
package/src/utils/fileutils.js
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.readJsonFile = readJsonFile;
|
4
|
+
exports.readYamlFile = readYamlFile;
|
5
|
+
exports.writeJsonFile = writeJsonFile;
|
6
|
+
exports.directoryExists = directoryExists;
|
7
|
+
exports.fileExists = fileExists;
|
8
|
+
exports.createDirectory = createDirectory;
|
9
|
+
exports.isRelativePath = isRelativePath;
|
10
|
+
exports.extractFileFromTarball = extractFileFromTarball;
|
11
|
+
exports.readFileIfExisting = readFileIfExisting;
|
4
12
|
const json_1 = require("./json");
|
5
13
|
const fs_1 = require("fs");
|
6
14
|
const path_1 = require("path");
|
@@ -26,7 +34,6 @@ function readJsonFile(path, options) {
|
|
26
34
|
throw e;
|
27
35
|
}
|
28
36
|
}
|
29
|
-
exports.readJsonFile = readJsonFile;
|
30
37
|
/**
|
31
38
|
* Reads a YAML file and returns the object the YAML content represents.
|
32
39
|
*
|
@@ -38,7 +45,6 @@ function readYamlFile(path, options) {
|
|
38
45
|
const { load } = require('@zkochan/js-yaml');
|
39
46
|
return load(content, { ...options, filename: path });
|
40
47
|
}
|
41
|
-
exports.readYamlFile = readYamlFile;
|
42
48
|
/**
|
43
49
|
* Serializes the given data to JSON and writes it to a file.
|
44
50
|
*
|
@@ -54,7 +60,6 @@ function writeJsonFile(path, data, options) {
|
|
54
60
|
: serializedJson;
|
55
61
|
(0, fs_1.writeFileSync)(path, content, { encoding: 'utf-8' });
|
56
62
|
}
|
57
|
-
exports.writeJsonFile = writeJsonFile;
|
58
63
|
/**
|
59
64
|
* Check if a directory exists
|
60
65
|
* @param path Path to directory
|
@@ -67,7 +72,6 @@ function directoryExists(path) {
|
|
67
72
|
return false;
|
68
73
|
}
|
69
74
|
}
|
70
|
-
exports.directoryExists = directoryExists;
|
71
75
|
/**
|
72
76
|
* Check if a file exists.
|
73
77
|
* @param path Path to file
|
@@ -80,18 +84,15 @@ function fileExists(path) {
|
|
80
84
|
return false;
|
81
85
|
}
|
82
86
|
}
|
83
|
-
exports.fileExists = fileExists;
|
84
87
|
function createDirectory(path) {
|
85
88
|
(0, fs_1.mkdirSync)(path, { recursive: true });
|
86
89
|
}
|
87
|
-
exports.createDirectory = createDirectory;
|
88
90
|
function isRelativePath(path) {
|
89
91
|
return (path === '.' ||
|
90
92
|
path === '..' ||
|
91
93
|
path.startsWith('./') ||
|
92
94
|
path.startsWith('../'));
|
93
95
|
}
|
94
|
-
exports.isRelativePath = isRelativePath;
|
95
96
|
/**
|
96
97
|
* Extracts a file from a given tarball to the specified destination.
|
97
98
|
* @param tarballPath The path to the tarball from where the file should be extracted.
|
@@ -128,8 +129,6 @@ async function extractFileFromTarball(tarballPath, file, destinationFilePath) {
|
|
128
129
|
(0, fs_1.createReadStream)(tarballPath).pipe((0, zlib_1.createGunzip)()).pipe(tarExtractStream);
|
129
130
|
});
|
130
131
|
}
|
131
|
-
exports.extractFileFromTarball = extractFileFromTarball;
|
132
132
|
function readFileIfExisting(path) {
|
133
133
|
return (0, fs_1.existsSync)(path) ? (0, fs_1.readFileSync)(path, 'utf-8') : '';
|
134
134
|
}
|
135
|
-
exports.readFileIfExisting = readFileIfExisting;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.getMatchingStringsWithCache = exports.
|
3
|
+
exports.getMatchingStringsWithCache = exports.GLOB_CHARACTERS = void 0;
|
4
|
+
exports.findMatchingProjects = findMatchingProjects;
|
4
5
|
const minimatch_1 = require("minimatch");
|
5
6
|
const validPatternTypes = [
|
6
7
|
'name', // Pattern is based on the project's name
|
@@ -89,7 +90,6 @@ function findMatchingProjects(patterns = [], projects) {
|
|
89
90
|
}
|
90
91
|
return Array.from(matchedProjects);
|
91
92
|
}
|
92
|
-
exports.findMatchingProjects = findMatchingProjects;
|
93
93
|
function addMatchingProjectsByDirectory(projectNames, projects, pattern, matchedProjects) {
|
94
94
|
for (const projectName of projectNames) {
|
95
95
|
const root = projects[projectName].data.root;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.findWorkspaceRoot =
|
3
|
+
exports.findWorkspaceRoot = findWorkspaceRoot;
|
4
4
|
const workspace_root_1 = require("./workspace-root");
|
5
5
|
/**
|
6
6
|
* Recursive function that walks back up the directory
|
@@ -19,7 +19,6 @@ function findWorkspaceRoot(dir) {
|
|
19
19
|
return { type: 'nx', dir: r };
|
20
20
|
}
|
21
21
|
}
|
22
|
-
exports.findWorkspaceRoot = findWorkspaceRoot;
|
23
22
|
function isAngularCliInstalled(root) {
|
24
23
|
try {
|
25
24
|
// nx-ignore-next-line
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.getPackageNameFromImportPath =
|
3
|
+
exports.getPackageNameFromImportPath = getPackageNameFromImportPath;
|
4
4
|
//# Converts import paths to package names.
|
5
5
|
//# e.g. - `@nx/workspace` -> `@nx/workspace`
|
6
6
|
//# - `@nx/workspace/plugin` -> `@nx/workspace`
|
@@ -15,4 +15,3 @@ function getPackageNameFromImportPath(importExpression) {
|
|
15
15
|
// For unscoped packages, the package name is up to the first '/'
|
16
16
|
return importExpression.split('/')[0];
|
17
17
|
}
|
18
|
-
exports.getPackageNameFromImportPath = getPackageNameFromImportPath;
|
package/src/utils/git-utils.js
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.getGithubSlugOrNull = getGithubSlugOrNull;
|
4
|
+
exports.extractUserAndRepoFromGitHubUrl = extractUserAndRepoFromGitHubUrl;
|
5
|
+
exports.commitChanges = commitChanges;
|
6
|
+
exports.getLatestCommitSha = getLatestCommitSha;
|
4
7
|
const child_process_1 = require("child_process");
|
5
8
|
const devkit_exports_1 = require("../devkit-exports");
|
6
9
|
function getGithubSlugOrNull() {
|
@@ -12,7 +15,6 @@ function getGithubSlugOrNull() {
|
|
12
15
|
return null;
|
13
16
|
}
|
14
17
|
}
|
15
|
-
exports.getGithubSlugOrNull = getGithubSlugOrNull;
|
16
18
|
function extractUserAndRepoFromGitHubUrl(gitRemotes) {
|
17
19
|
const regex = /^\s*(\w+)\s+(git@github\.com:|https:\/\/github\.com\/)([A-Za-z0-9_.-]+)\/([A-Za-z0-9_.-]+)\.git/gm;
|
18
20
|
let firstGitHubUrl = null;
|
@@ -29,7 +31,6 @@ function extractUserAndRepoFromGitHubUrl(gitRemotes) {
|
|
29
31
|
}
|
30
32
|
return firstGitHubUrl ? parseGitHubUrl(firstGitHubUrl) : null;
|
31
33
|
}
|
32
|
-
exports.extractUserAndRepoFromGitHubUrl = extractUserAndRepoFromGitHubUrl;
|
33
34
|
function parseGitHubUrl(url) {
|
34
35
|
const sshPattern = /git@github\.com:([A-Za-z0-9_.-]+)\/([A-Za-z0-9_.-]+)\.git/;
|
35
36
|
const httpsPattern = /https:\/\/github\.com\/([A-Za-z0-9_.-]+)\/([A-Za-z0-9_.-]+)\.git/;
|
@@ -63,7 +64,6 @@ function commitChanges(commitMessage, directory) {
|
|
63
64
|
}
|
64
65
|
return getLatestCommitSha();
|
65
66
|
}
|
66
|
-
exports.commitChanges = commitChanges;
|
67
67
|
function getLatestCommitSha() {
|
68
68
|
try {
|
69
69
|
return (0, child_process_1.execSync)('git rev-parse HEAD', {
|
@@ -75,4 +75,3 @@ function getLatestCommitSha() {
|
|
75
75
|
return null;
|
76
76
|
}
|
77
77
|
}
|
78
|
-
exports.getLatestCommitSha = getLatestCommitSha;
|
package/src/utils/globs.js
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.combineGlobPatterns =
|
3
|
+
exports.combineGlobPatterns = combineGlobPatterns;
|
4
4
|
function combineGlobPatterns(...patterns) {
|
5
5
|
const p = patterns.flat();
|
6
6
|
return p.length > 1 ? '{' + p.join(',') + '}' : p.length === 1 ? p[0] : '';
|
7
7
|
}
|
8
|
-
exports.combineGlobPatterns = combineGlobPatterns;
|