We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a98d117 commit f69e598Copy full SHA for f69e598
packages/cli/src/commands/migrate.ts
@@ -350,6 +350,19 @@ export const migrate = new Command()
350
projectInfo.projectRoot,
351
);
352
353
+ if (getOtherDetectedFiles().length > 0) {
354
+ logger.break();
355
+ logger.warn(
356
+ "React Scan was detected in additional files that were not automatically cleaned:",
357
+ );
358
+ for (const file of getOtherDetectedFiles()) {
359
+ logger.log(` - ${file}`);
360
+ }
361
362
+ "Please remove React Scan references from these files manually.",
363
364
365
+
366
logger.break();
367
logger.log(`${highlighter.success("Success!")} Migration complete.`);
368
logger.log("You may now start your development server.");
0 commit comments