From e28bdd6a715020af3f6ab086dcf535b34d54bf1c Mon Sep 17 00:00:00 2001 From: Lars Kappert Date: Fri, 2 Jun 2023 11:27:44 +0200 Subject: [PATCH] Fix proxy-agent import --- lib/plugin/github/GitHub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugin/github/GitHub.js b/lib/plugin/github/GitHub.js index b69a5350..3c22727d 100644 --- a/lib/plugin/github/GitHub.js +++ b/lib/plugin/github/GitHub.js @@ -8,7 +8,7 @@ import mime from 'mime-types'; import _ from 'lodash'; import retry from 'async-retry'; import newGithubReleaseUrl from 'new-github-release-url'; -import ProxyAgent from 'proxy-agent'; +import { ProxyAgent } from 'proxy-agent'; import { format, parseVersion, readJSON, e } from '../../util.js'; import Release from '../GitRelease.js'; import prompts from './prompts.js';