From 1e00bff96af9760a534c40770b09d7e41a0de52a Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 24 Nov 2025 12:00:15 +0100 Subject: [PATCH] Silence dotenv tip output (quiet mode) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 56bda3ea1..8c4e22754 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,7 +16,7 @@ import readline from 'node:readline/promises'; import { stdin as input, stdout as output } from 'node:process'; import chalk from 'chalk'; -dotenv.config(); +dotenv.config({ quiet: true }); const program = new Command(); let globalVerbose = false;