We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd04ba6 commit 8d7a471Copy full SHA for 8d7a471
projects/igniteui-angular/migrations/update-21_0_0/index.ts
@@ -209,9 +209,8 @@ function migrateFile(filePath: string, content: string): string {
209
}
210
211
212
- }
213
- // Rename type references in the code (but only if not aliased in import)
214
- else if (ts.isIdentifier(node) && importedOldTypes.has(node.text)) {
+ } else if (ts.isIdentifier(node) && importedOldTypes.has(node.text)) {
+ // Rename type references in the code (but only if not aliased in import)
215
const oldName = node.text;
216
const rename = TYPE_RENAMES.get(oldName)!;
217
0 commit comments