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);