feat: add no-proxy support (#1482)

This commit is contained in:
Tom Keller
2025-09-09 16:23:05 -07:00
committed by kellertk
parent d1738addf8
commit c8eae42842
10 changed files with 635 additions and 117 deletions
+1
View File
@@ -28,6 +28,7 @@ export function translateEnvVariables() {
'RETRY_MAX_ATTEMPTS',
'SPECIAL_CHARACTERS_WORKAROUND',
'USE_EXISTING_CREDENTIALS',
'NO_PROXY',
];
// Treat HTTPS_PROXY as HTTP_PROXY. Precedence is HTTPS_PROXY > HTTP_PROXY
if (process.env.HTTPS_PROXY) process.env.HTTP_PROXY = process.env.HTTPS_PROXY;