mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-13 05:12:55 -07:00
fix(core): resolve DEP0040 punycode deprecation via patch-package (#17692)
Co-authored-by: Adib234 <30782825+Adib234@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
f9da18e0cc
commit
ac7687c1dd
@@ -0,0 +1,11 @@
|
||||
diff --git a/node_modules/whatwg-url/lib/url-state-machine.js b/node_modules/whatwg-url/lib/url-state-machine.js
|
||||
index 27d977a..2f5633a 100644
|
||||
--- a/node_modules/whatwg-url/lib/url-state-machine.js
|
||||
+++ b/node_modules/whatwg-url/lib/url-state-machine.js
|
||||
@@ -1,5 +1,5 @@
|
||||
"use strict";
|
||||
-const punycode = require("punycode");
|
||||
+const punycode = require("punycode/"); // Trailing slash ensures userland package usage
|
||||
const tr46 = require("tr46");
|
||||
|
||||
const specialSchemes = {
|
||||
Reference in New Issue
Block a user