From e539efe2b9a627927ffcb1420098a69038d042e2 Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Mon, 20 Apr 2026 00:49:46 -0500 Subject: fix: patch arborist to get around bun bug (#23460) --- patches/@npmcli%2Fagent@4.0.0.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 patches/@npmcli%2Fagent@4.0.0.patch (limited to 'patches/@npmcli%2Fagent@4.0.0.patch') diff --git a/patches/@npmcli%2Fagent@4.0.0.patch b/patches/@npmcli%2Fagent@4.0.0.patch new file mode 100644 index 000000000..a3506a90e --- /dev/null +++ b/patches/@npmcli%2Fagent@4.0.0.patch @@ -0,0 +1,13 @@ +diff --git a/lib/agents.js b/lib/agents.js +index 45ec59c4c13757379095131c4f0a5ea6f7284f45..0763b031e355a755ec6a26f98461aa3f63b8339b 100644 +--- a/lib/agents.js ++++ b/lib/agents.js +@@ -32,7 +32,7 @@ module.exports = class Agent extends AgentBase { + } + + get proxy () { +- return this.#proxy ? { url: this.#proxy } : {} ++ return this.#proxy ? { url: this.#proxy.toString() } : {} + } + + #getProxy (options) { -- cgit v1.2.3