From 5bc0bbe798129627111490a7af76c45bcae2136d Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Tue, 6 May 2025 09:25:48 +0530 Subject: [PATCH] Add --yes flag by default to command generator --- apps/web/src/app/(home)/_components/StackArchitech.tsx | 2 +- bun.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/app/(home)/_components/StackArchitech.tsx b/apps/web/src/app/(home)/_components/StackArchitech.tsx index 404ca9c..0fd421e 100644 --- a/apps/web/src/app/(home)/_components/StackArchitech.tsx +++ b/apps/web/src/app/(home)/_components/StackArchitech.tsx @@ -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 = ( key: K, diff --git a/bun.lock b/bun.lock index beb770a..6c57886 100644 --- a/bun.lock +++ b/bun.lock @@ -14,7 +14,7 @@ }, "apps/cli": { "name": "create-better-t-stack", - "version": "2.8.0", + "version": "2.8.2", "bin": { "create-better-t-stack": "dist/index.js", },