(dir: string)
| 117 | * Gets environment info for logging. Fast operation that doesn't require config. |
| 118 | */ |
| 119 | export function getEnvInfo(dir: string): string[] { |
| 120 | const { loadedEnvFiles } = loadEnvConfig(dir, true, console, false) |
| 121 | return loadedEnvFiles.map((f) => f.path) |
| 122 | } |
no test coverage detected