several bug fixes

This commit is contained in:
Aman Varshney
2025-03-29 18:09:36 +05:30
parent bf0625ce08
commit b0e3432554
12 changed files with 304 additions and 65 deletions

View File

@@ -8,6 +8,12 @@ export function displayConfig(config: Partial<ProjectConfig>) {
configDisplay.push(`${pc.blue("Project Name:")} ${config.projectName}`);
}
if (config.frontend !== undefined) {
const frontendText =
config.frontend.length > 0 ? config.frontend.join(", ") : "none";
configDisplay.push(`${pc.blue("Frontend:")} ${frontendText}`);
}
if (config.backendFramework !== undefined) {
configDisplay.push(
`${pc.blue("Backend Framework:")} ${config.backendFramework}`,