From 3248ddb3689b0af638e094495f86d53adfff00c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?= Date: Tue, 14 Nov 2023 23:17:01 +0100 Subject: [PATCH] Avoid `git://` URLs, they're no longer supported --- test/bower-fixtures/not-ok-install/bower.json | 2 +- test/npm-fixtures/not-ok-install/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bower-fixtures/not-ok-install/bower.json b/test/bower-fixtures/not-ok-install/bower.json index 882635c..f2b84d9 100644 --- a/test/bower-fixtures/not-ok-install/bower.json +++ b/test/bower-fixtures/not-ok-install/bower.json @@ -2,6 +2,6 @@ "name": "not-ok-install", "dependencies": { "jquery": "<=1.11.0", - "json3": "git://github.com/bestiejs/json3.git#v3.3.2" + "json3": "https://github.com/bestiejs/json3.git#v3.3.2" } } diff --git a/test/npm-fixtures/not-ok-install/package.json b/test/npm-fixtures/not-ok-install/package.json index 91eced2..c7041d0 100644 --- a/test/npm-fixtures/not-ok-install/package.json +++ b/test/npm-fixtures/not-ok-install/package.json @@ -3,7 +3,7 @@ "private": true, "dependencies": { "jquery": "<=1.11.0", - "json3": "git://github.com/bestiejs/json3.git#v3.3.2", + "json3": "https://github.com/bestiejs/json3.git#v3.3.2", "@bcoe/awesomeify": "~16.0.3" } }