Skip to content

Commit fe86730

Browse files
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. (This is a common error affecting many popular npm packages; I'm opening PRs on several projects to fix it. I encourage anyone reading this to check any packages they maintain and implement the same fix if appropriate!)
1 parent 06bfa91 commit fe86730

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "2.0.0-next.5",
55
"repository": {
66
"type": "git",
7-
"url": "git://github.com/browserify/resolve.git"
7+
"url": "https://github.com/browserify/resolve.git"
88
},
99
"bin": {
1010
"resolve": "./bin/resolve"

0 commit comments

Comments
 (0)