Add --yes flag by default to command generator

This commit is contained in:
Aman Varshney
2025-05-06 09:25:48 +05:30
parent 52195b3580
commit 5bc0bbe798
2 changed files with 2 additions and 2 deletions

View File

@@ -730,7 +730,7 @@ const generateCommand = (stackState: StackState): string => {
}
const projectName = stackState.projectName || "my-better-t-app";
const flags: string[] = [];
const flags: string[] = ["--yes"];
const checkDefault = <K extends keyof StackState>(
key: K,