Skip to content

Commit 75b1d19

Browse files
committed
style(migration): format code for better readability in collectMigrationPlan function
1 parent 64cfdaf commit 75b1d19

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • packages/cli/src/migration

packages/cli/src/migration/bin.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,9 @@ async function collectMigrationPlan(
533533
(detectFramework(rootDir).includes(framework) && !hasFrameworkShim(rootDir, framework)) ||
534534
(packages ?? []).some((pkg) => {
535535
const pkgPath = path.join(rootDir, pkg.path);
536-
return detectFramework(pkgPath).includes(framework) && !hasFrameworkShim(pkgPath, framework);
536+
return (
537+
detectFramework(pkgPath).includes(framework) && !hasFrameworkShim(pkgPath, framework)
538+
);
537539
});
538540
if (anyMissingShim) {
539541
const addShim = await confirmFrameworkShim(framework, options.interactive);

0 commit comments

Comments
 (0)