fix: installer upgrade path fixed

This commit is contained in:
Brian Madison
2025-06-18 19:58:28 -05:00
parent a314df4f22
commit bd6a558929
2 changed files with 34 additions and 41 deletions

View File

@@ -425,7 +425,10 @@ class Installer {
console.log(chalk.cyan("\n📦 Starting v3 to v4 upgrade process..."));
const V3ToV4Upgrader = require("../../upgraders/v3-to-v4-upgrader");
const upgrader = new V3ToV4Upgrader();
return await upgrader.upgrade({ projectPath: installDir });
return await upgrader.upgrade({
projectPath: installDir,
ides: config.ides || [] // Pass IDE selections from initial config
});
}
case "alongside":
return await this.performFreshInstall(config, installDir, spinner);