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

@@ -71,6 +71,7 @@ export async function createProject(options: ProjectConfig): Promise<string> {
options.examples,
options.orm,
options.auth,
options.frontend,
);
await setupEnvironmentVariables(projectDir, options);
@@ -78,7 +79,12 @@ export async function createProject(options: ProjectConfig): Promise<string> {
await initializeGit(projectDir, options.git);
if (options.addons.length > 0) {
await setupAddons(projectDir, options.addons, options.packageManager);
await setupAddons(
projectDir,
options.addons,
options.packageManager,
options.frontend,
);
}
await updatePackageConfigurations(projectDir, options);