123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- "use strict";
- /**
- * @license
- * Copyright Google LLC All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.dev/license
- */
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
- return new (P || (P = Promise))(function (resolve, reject) {
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
- step((generator = generator.apply(thisArg, _arguments || [])).next());
- });
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.cdkMigrations = void 0;
- exports.createMigrationSchematicRule = createMigrationSchematicRule;
- exports.isDevkitMigration = isDevkitMigration;
- const tasks_1 = require("@angular-devkit/schematics/tasks");
- const update_tool_1 = require("../update-tool");
- const project_tsconfig_paths_1 = require("../utils/project-tsconfig-paths");
- const devkit_file_system_1 = require("./devkit-file-system");
- const devkit_migration_1 = require("./devkit-migration");
- const find_stylesheets_1 = require("./find-stylesheets");
- const attribute_selectors_1 = require("./migrations/attribute-selectors");
- const class_inheritance_1 = require("./migrations/class-inheritance");
- const class_names_1 = require("./migrations/class-names");
- const constructor_signature_1 = require("./migrations/constructor-signature");
- const css_selectors_1 = require("./migrations/css-selectors");
- const css_tokens_1 = require("./migrations/css-tokens");
- const element_selectors_1 = require("./migrations/element-selectors");
- const input_names_1 = require("./migrations/input-names");
- const method_call_arguments_1 = require("./migrations/method-call-arguments");
- const misc_template_1 = require("./migrations/misc-template");
- const output_names_1 = require("./migrations/output-names");
- const property_names_1 = require("./migrations/property-names");
- const symbol_removal_1 = require("./migrations/symbol-removal");
- /** List of migrations which run for the CDK update. */
- exports.cdkMigrations = [
- attribute_selectors_1.AttributeSelectorsMigration,
- class_inheritance_1.ClassInheritanceMigration,
- class_names_1.ClassNamesMigration,
- constructor_signature_1.ConstructorSignatureMigration,
- css_selectors_1.CssSelectorsMigration,
- css_tokens_1.CssTokensMigration,
- element_selectors_1.ElementSelectorsMigration,
- input_names_1.InputNamesMigration,
- method_call_arguments_1.MethodCallArgumentsMigration,
- misc_template_1.MiscTemplateMigration,
- output_names_1.OutputNamesMigration,
- property_names_1.PropertyNamesMigration,
- symbol_removal_1.SymbolRemovalMigration,
- ];
- /**
- * Creates a Angular schematic rule that runs the upgrade for the
- * specified target version.
- */
- function createMigrationSchematicRule(targetVersion, extraMigrations, upgradeData, onMigrationCompleteFn) {
- return (tree, context) => __awaiter(this, void 0, void 0, function* () {
- const logger = context.logger;
- const workspace = yield (0, project_tsconfig_paths_1.getWorkspaceConfigGracefully)(tree);
- if (workspace === null) {
- logger.error('Could not find workspace configuration file.');
- return;
- }
- // Keep track of all project source files which have been checked/migrated. This is
- // necessary because multiple TypeScript projects can contain the same source file and
- // we don't want to check these again, as this would result in duplicated failure messages.
- const analyzedFiles = new Set();
- const fileSystem = new devkit_file_system_1.DevkitFileSystem(tree);
- const projectNames = workspace.projects.keys();
- const migrations = [...exports.cdkMigrations, ...extraMigrations];
- let hasFailures = false;
- for (const projectName of projectNames) {
- const project = workspace.projects.get(projectName);
- const buildTsconfigPath = (0, project_tsconfig_paths_1.getTargetTsconfigPath)(project, 'build');
- const testTsconfigPath = (0, project_tsconfig_paths_1.getTargetTsconfigPath)(project, 'test');
- if (!buildTsconfigPath && !testTsconfigPath) {
- logger.warn(`Skipping migration for project ${projectName}. Unable to determine 'tsconfig.json' file in workspace config.`);
- continue;
- }
- // In some applications, developers will have global stylesheets which are not
- // specified in any Angular component. Therefore we glob up all CSS and SCSS files
- // in the project and migrate them if needed.
- // TODO: rework this to collect global stylesheets from the workspace config.
- // TODO: https://github.com/angular/components/issues/24032.
- const additionalStylesheetPaths = (0, find_stylesheets_1.findStylesheetFiles)(tree, project.root);
- if (buildTsconfigPath !== null) {
- runMigrations(project, projectName, buildTsconfigPath, additionalStylesheetPaths, false);
- }
- if (testTsconfigPath !== null) {
- runMigrations(project, projectName, testTsconfigPath, additionalStylesheetPaths, true);
- }
- }
- let runPackageManager = false;
- // Run the global post migration static members for all
- // registered devkit migrations.
- migrations.forEach(m => {
- const actionResult = isDevkitMigration(m) && m.globalPostMigration !== undefined
- ? m.globalPostMigration(tree, targetVersion, context)
- : null;
- if (actionResult) {
- runPackageManager = runPackageManager || actionResult.runPackageManager;
- }
- });
- // If a migration requested the package manager to run, we run it as an
- // asynchronous post migration task. We cannot run it synchronously,
- // as file changes from the current migration task are not applied to
- // the file system yet.
- if (runPackageManager) {
- context.addTask(new tasks_1.NodePackageInstallTask({ quiet: false }));
- }
- if (onMigrationCompleteFn) {
- onMigrationCompleteFn(context, targetVersion, hasFailures);
- }
- /** Runs the migrations for the specified workspace project. */
- function runMigrations(project, projectName, tsconfigPath, additionalStylesheetPaths, isTestTarget) {
- const program = update_tool_1.UpdateProject.createProgramFromTsconfig(tsconfigPath, fileSystem);
- const updateContext = {
- isTestTarget,
- projectName,
- project,
- tree,
- };
- const updateProject = new update_tool_1.UpdateProject(updateContext, program, fileSystem, analyzedFiles, context.logger);
- const result = updateProject.migrate(migrations, targetVersion, upgradeData, additionalStylesheetPaths);
- // Commit all recorded edits in the update recorder. We apply the edits after all
- // migrations ran because otherwise offsets in the TypeScript program would be
- // shifted and individual migrations could no longer update the same source file.
- fileSystem.commitEdits();
- hasFailures = hasFailures || result.hasFailures;
- }
- });
- }
- /** Whether the given migration type refers to a devkit migration */
- function isDevkitMigration(value) {
- return devkit_migration_1.DevkitMigration.isPrototypeOf(value);
- }
- //# sourceMappingURL=devkit-migration-rule.js.map
|