From 2a6c8a360e139808a630e62c048d29986283e093 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;