From 008e7a5c0883e013c4dae8d6e0fcd150a89e413e Mon Sep 17 00:00:00 2001 From: Pep Date: Wed, 25 May 2022 08:51:14 +0200 Subject: [PATCH] Use https instead of git protocol for repository As Github has disabled the Git protocol[0], accessing this repo using git:// is no longer possible and results in a time-out. This causes problems when Yarn attempts to download this package[1]. Changing this to https should solve this. [0] https://github.blog/2021-09-01-improving-git-protocol-security-github/ [1] https://github.com/yarnpkg/yarn/issues/8833 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ae4b6e764..c7a6dec1e 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ ], "repository": { "type": "git", - "url": "git://github.com/hammerjs/hammer.js.git" + "url": "https://github.com/hammerjs/hammer.js" }, "bugs": { "url": "https://github.com/hammerjs/hammer.js/issues"