From ff00a4d8cae6e94b63be48d64f0dad5678c0463c Mon Sep 17 00:00:00 2001 From: fraxken Date: Mon, 11 Aug 2025 23:17:10 +0200 Subject: [PATCH] chore(dotenv): use quiet: true --- bin/index.js | 2 +- test/commands/cache.test.js | 2 +- test/commands/summary.test.js | 2 +- test/commands/verify.test.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/index.js b/bin/index.js index 25c0a753..578aae28 100755 --- a/bin/index.js +++ b/bin/index.js @@ -1,6 +1,6 @@ #!/usr/bin/env node import dotenv from "dotenv"; -dotenv.config(); +dotenv.config({ quiet: true }); // Import Node.js Dependencies import path from "node:path"; diff --git a/test/commands/cache.test.js b/test/commands/cache.test.js index cb6a53bb..3fdd6a90 100644 --- a/test/commands/cache.test.js +++ b/test/commands/cache.test.js @@ -1,5 +1,5 @@ import dotenv from "dotenv"; -dotenv.config(); +dotenv.config({ quiet: true }); // Import Node.js Dependencies import fs from "node:fs"; diff --git a/test/commands/summary.test.js b/test/commands/summary.test.js index fb0cd72a..a46c41ec 100644 --- a/test/commands/summary.test.js +++ b/test/commands/summary.test.js @@ -1,5 +1,5 @@ import dotenv from "dotenv"; -dotenv.config(); +dotenv.config({ quiet: true }); // Import Node.js Dependencies import { fileURLToPath } from "node:url"; diff --git a/test/commands/verify.test.js b/test/commands/verify.test.js index 0f272b6e..2ddfaf38 100644 --- a/test/commands/verify.test.js +++ b/test/commands/verify.test.js @@ -1,5 +1,5 @@ import dotenv from "dotenv"; -dotenv.config(); +dotenv.config({ quiet: true }); // Import Node.js Dependencies import { fileURLToPath } from "node:url";