52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
|
|
/**
|
||
|
|
* @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
|
||
|
|
*/
|
||
|
|
|
||
|
|
import {Rule, SchematicContext} from '@angular-devkit/schematics';
|
||
|
|
import {
|
||
|
|
createMigrationSchematicRule,
|
||
|
|
NullableDevkitMigration,
|
||
|
|
TargetVersion,
|
||
|
|
} from '@angular/cdk/schematics';
|
||
|
|
|
||
|
|
import {materialUpgradeData} from './upgrade-data';
|
||
|
|
import {MatCoreMigration} from './migrations/mat-core-removal';
|
||
|
|
import {ExplicitSystemVariablePrefixMigration} from './migrations/explicit-system-variable-prefix';
|
||
|
|
|
||
|
|
const materialMigrations: NullableDevkitMigration[] = [
|
||
|
|
MatCoreMigration,
|
||
|
|
ExplicitSystemVariablePrefixMigration,
|
||
|
|
];
|
||
|
|
|
||
|
|
/** Entry point for the migration schematics with target of Angular Material v19 */
|
||
|
|
export function updateToV19(): Rule {
|
||
|
|
return createMigrationSchematicRule(
|
||
|
|
TargetVersion.V19,
|
||
|
|
materialMigrations,
|
||
|
|
materialUpgradeData,
|
||
|
|
onMigrationComplete,
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
/** Function that will be called when the migration completed. */
|
||
|
|
function onMigrationComplete(
|
||
|
|
context: SchematicContext,
|
||
|
|
targetVersion: TargetVersion,
|
||
|
|
hasFailures: boolean,
|
||
|
|
) {
|
||
|
|
context.logger.info('');
|
||
|
|
context.logger.info(` ✓ Updated Angular Material to ${targetVersion}`);
|
||
|
|
context.logger.info('');
|
||
|
|
|
||
|
|
if (hasFailures) {
|
||
|
|
context.logger.warn(
|
||
|
|
' ⚠ Some issues were detected but could not be fixed automatically. Please check the ' +
|
||
|
|
'output above and fix these issues manually.',
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|