From 3efa3ce8adbe54d131d07c70b97e93156cd5799b Mon Sep 17 00:00:00 2001 From: Mark Amery Date: Mon, 11 Aug 2025 16:20:41 +0100 Subject: [PATCH] [meta] Fix broken repository URL in package.json GitHub hasn't supported the git protocol [since 2022](https://github.blog/security/application-security/improving-git-protocol-security-github/#no-more-unauthenticated-git), so this URL is broken. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4d96476..f3edc54 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "version": "2.0.0-next.5", "repository": { "type": "git", - "url": "git://github.com/browserify/resolve.git" + "url": "ssh://github.com/browserify/resolve.git" }, "bin": { "resolve": "./bin/resolve"