UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

123 lines (122 loc) 5.19 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = migrate; const json_1 = require("../../generators/utils/json"); const format_changed_files_with_prettier_if_available_1 = require("../../generators/internal-utils/format-changed-files-with-prettier-if-available"); const nx_json_1 = require("../../generators/utils/nx-json"); const update_manager_1 = require("../../nx-cloud/update-manager"); const run_command_1 = require("../../tasks-runner/run-command"); const output_1 = require("../../utils/output"); async function migrate(tree) { if (!tree.exists('nx.json')) { return; } const nxJson = (0, nx_json_1.readNxJson)(tree); // Already migrated if (!nxJson.tasksRunnerOptions?.default) { return; } const nxCloudClientSupported = await isNxCloudClientSupported(nxJson); (0, json_1.updateJson)(tree, 'nx.json', (nxJson) => { const { runner, options } = nxJson.tasksRunnerOptions.default; // This property shouldn't ever be part of tasks runner options. if (options.useDaemonProcess !== undefined) { nxJson.useDaemonProcess = options.useDaemonProcess; delete options.useDaemonProcess; } // Remaining keys may be specific to a given runner, so leave them alone if there are multiple runners. if (Object.keys(nxJson.tasksRunnerOptions ?? {}).length > 1) { return nxJson; } // These options can only be moved for nx-cloud. if (runner === 'nx-cloud' || runner === '@nrwl/nx-cloud') { nxJson.nxCloudAccessToken = options.accessToken; delete options.accessToken; if (options.url) { nxJson.nxCloudUrl = options.url; delete options.url; } if (nxCloudClientSupported) { removeNxCloudDependency(tree); } else { options.useLightClient = false; } if (options.encryptionKey) { nxJson.nxCloudEncryptionKey = options.encryptionKey; delete options.encryptionKey; } } // These options should be safe to move for all tasks runners: if (options.parallel !== undefined) { nxJson.parallel = options.parallel; delete options.parallel; } if (options.cacheDirectory !== undefined) { nxJson.cacheDirectory = options.cacheDirectory; delete options.cacheDirectory; } if (Array.isArray(options.cacheableOperations)) { nxJson.targetDefaults ??= {}; for (const target of options.cacheableOperations) { nxJson.targetDefaults[target] ??= {}; nxJson.targetDefaults[target].cache ??= true; } delete options.cacheableOperations; } if (['nx-cloud', '@nrwl/nx-cloud', 'nx/tasks-runners/default'].includes(runner)) { delete nxJson.tasksRunnerOptions.default.runner; if (Object.values(options).length === 0) { delete nxJson.tasksRunnerOptions; } } return nxJson; }); await (0, format_changed_files_with_prettier_if_available_1.formatChangedFilesWithPrettierIfAvailable)(tree); } async function isNxCloudClientSupported(nxJson) { const nxCloudOptions = (0, run_command_1.getRunnerOptions)('default', nxJson, {}, true); // Non enterprise workspaces support the Nx Cloud Client if (!isNxCloudEnterpriseWorkspace(nxJson)) { return true; } // If we can get the nx cloud client, it's supported try { await (0, update_manager_1.verifyOrUpdateNxCloudClient)(nxCloudOptions); return true; } catch (e) { if (e instanceof update_manager_1.NxCloudEnterpriseOutdatedError) { output_1.output.warn({ title: 'Nx Cloud Instance is outdated.', bodyLines: [ 'If you are an Nx Enterprise customer, please reach out to your assigned Developer Productivity Engineer.', 'If you are NOT an Nx Enterprise customer but are seeing this message, please reach out to cloud-support@nrwl.io.', ], }); } return false; } } function isNxCloudEnterpriseWorkspace(nxJson) { const { runner, options } = nxJson.tasksRunnerOptions.default; return ((runner === 'nx-cloud' || runner === '@nrwl/nx-cloud') && options.url && ![ 'https://nx.app', 'https://cloud.nx.app', 'https://staging.nx.app', 'https://snapshot.nx.app', ].includes(options.url)); } function removeNxCloudDependency(tree) { if (tree.exists('package.json')) { (0, json_1.updateJson)(tree, 'package.json', (packageJson) => { delete packageJson.dependencies?.['nx-cloud']; delete packageJson.devDependencies?.['nx-cloud']; delete packageJson.dependencies?.['@nrwl/nx-cloud']; delete packageJson.devDependencies?.['@nrwl/nx-cloud']; return packageJson; }); } }