From aed897c16f9328d2707e8a0df485e933e0352f85 Mon Sep 17 00:00:00 2001 From: Joydip Roy <112172822+rjoydip@users.noreply.github.com> Date: Sun, 18 May 2025 15:58:37 +0530 Subject: [PATCH] fixed(#269): duplicate logging message during project creation (#266) Co-authored-by: Aman Varshney --- .changeset/strong-buttons-explode.md | 5 +++++ apps/cli/src/index.ts | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 .changeset/strong-buttons-explode.md diff --git a/.changeset/strong-buttons-explode.md b/.changeset/strong-buttons-explode.md new file mode 100644 index 0000000..2081ce6 --- /dev/null +++ b/.changeset/strong-buttons-explode.md @@ -0,0 +1,5 @@ +--- +"create-better-t-stack": patch +--- + +fixed(#269): duplicate logging message during project creation diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index a5d7837..7f63fd8 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -627,9 +627,6 @@ function processAndValidateFlags( process.exit(1); } config.examples = []; - log.info( - "Due to '--backend none', the following options have been automatically set: --auth=false, --database=none, --orm=none, --api=none, --runtime=none, --db-setup=none, --examples=none", - ); } else { const effectiveDatabase = config.database ?? (options.yes ? DEFAULT_CONFIG.database : undefined);