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/src | |
| parent | 2e20effb43657de3944091f164f9fbd72b4b2977 (diff) | |
quiet dotenv log message (#2239)
Co-authored-by: Scott Densmore <[email protected]>
Diffstat (limited to 'packages/cli/src')
| -rw-r--r-- | packages/cli/src/config/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 }); } } |
