We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64cfdaf commit 75b1d19Copy full SHA for 75b1d19
1 file changed
packages/cli/src/migration/bin.ts
@@ -533,7 +533,9 @@ async function collectMigrationPlan(
533
(detectFramework(rootDir).includes(framework) && !hasFrameworkShim(rootDir, framework)) ||
534
(packages ?? []).some((pkg) => {
535
const pkgPath = path.join(rootDir, pkg.path);
536
- return detectFramework(pkgPath).includes(framework) && !hasFrameworkShim(pkgPath, framework);
+ return (
537
+ detectFramework(pkgPath).includes(framework) && !hasFrameworkShim(pkgPath, framework)
538
+ );
539
});
540
if (anyMissingShim) {
541
const addShim = await confirmFrameworkShim(framework, options.interactive);
0 commit comments