Skip to content

Commit dcaced0

Browse files
committed
fix: migrate multiple component classes
1 parent cd26274 commit dcaced0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli/src/angular/migrations/standalone/0002-import-standalone-component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const migrateComponents = async (
5555
cliOptions,
5656
);
5757

58-
return await saveFileChanges(tsSourceFile, cliOptions);
58+
await saveFileChanges(tsSourceFile, cliOptions);
5959
}
6060
}
6161
} else if (sourceFile.getFilePath().endsWith(".ts")) {
@@ -76,7 +76,7 @@ export const migrateComponents = async (
7676
);
7777

7878
if (ionicComponents.length > 0 || ionIcons.length > 0) {
79-
return await saveFileChanges(sourceFile, cliOptions);
79+
await saveFileChanges(sourceFile, cliOptions);
8080
}
8181
}
8282
}

0 commit comments

Comments
 (0)