diff options
| author | Mot <[email protected]> | 2025-06-27 19:03:20 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-28 02:03:20 +0000 |
| commit | ad7839ea4c6484485678049e8539f109304582fb (patch) | |
| tree | 83a0247c8b892e4692e50b25d0c5f0e3b8694985 /packages/cli | |
| parent | 2e20effb43657de3944091f164f9fbd72b4b2977 (diff) | |
quiet dotenv log message (#2239)
Co-authored-by: Scott Densmore <[email protected]>
Diffstat (limited to 'packages/cli')
| -rw-r--r-- | packages/cli/package.json | 2 | ||||
| -rw-r--r-- | packages/cli/src/config/config.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/package.json b/packages/cli/package.json index 846399aa..0f4aa06d 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -34,7 +34,7 @@ "@types/update-notifier": "^6.0.8", "command-exists": "^1.2.9", "diff": "^7.0.0", - "dotenv": "^16.4.7", + "dotenv": "^16.6.1", "gaxios": "^6.1.1", "glob": "^10.4.1", "highlight.js": "^11.11.1", diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index c053f4b6..552a8f67 100644 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -297,6 +297,6 @@ function findEnvFile(startDir: string): string | null { export function loadEnvironment(): void { const envFilePath = findEnvFile(process.cwd()); if (envFilePath) { - dotenv.config({ path: envFilePath }); + dotenv.config({ path: envFilePath, quiet: true }); } } |
