Skip to content

Commit

Permalink
deps: hosted-git-info@7.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed May 7, 2024
1 parent f94d672 commit 714e3e1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 20 deletions.
2 changes: 1 addition & 1 deletion node_modules/hosted-git-info/lib/hosts.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ hosts.sourcehut = {
`https://${domain}/${user}/${project}.git${maybeJoin('#', committish)}`,
tarballtemplate: ({ domain, user, project, committish }) =>
`https://${domain}/${user}/${project}/archive/${maybeEncode(committish) || 'HEAD'}.tar.gz`,
bugstemplate: ({ user, project }) => null,
bugstemplate: () => null,
extract: (url) => {
let [, user, project, aux] = url.pathname.split('/', 4)

Expand Down
18 changes: 6 additions & 12 deletions node_modules/hosted-git-info/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "hosted-git-info",
"version": "7.0.1",
"version": "7.0.2",
"description": "Provides metadata and conversions from repository urls for GitHub, Bitbucket and GitLab",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/npm/hosted-git-info.git"
"url": "git+https://github.com/npm/hosted-git-info.git"
},
"keywords": [
"git",
Expand All @@ -24,7 +24,7 @@
"snap": "tap",
"test": "tap",
"test:coverage": "tap --coverage-report=html",
"lint": "eslint \"**/*.js\"",
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"postlint": "template-oss-check",
"lintfix": "npm run lint -- --fix",
"template-oss-apply": "template-oss-apply --force"
Expand All @@ -34,7 +34,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"@npmcli/template-oss": "4.22.0",
"tap": "^16.0.1"
},
"files": [
Expand All @@ -54,13 +54,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.18.0",
"publish": "true",
"ciVersions": [
"16.14.0",
"16.x",
"18.0.0",
"18.x"
]
"version": "4.22.0",
"publish": "true"
}
}
11 changes: 6 additions & 5 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"fs-minipass": "^3.0.3",
"glob": "^10.3.12",
"graceful-fs": "^4.2.11",
"hosted-git-info": "^7.0.1",
"hosted-git-info": "^7.0.2",
"ini": "^4.1.2",
"init-package-json": "^6.0.2",
"is-cidr": "^5.0.5",
Expand Down Expand Up @@ -5909,10 +5909,11 @@
}
},
"node_modules/hosted-git-info": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
"integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
"inBundle": true,
"license": "ISC",
"dependencies": {
"lru-cache": "^10.0.1"
},
Expand Down Expand Up @@ -14796,7 +14797,7 @@
"bin-links": "^4.0.4",
"cacache": "^18.0.3",
"common-ancestor-path": "^1.0.1",
"hosted-git-info": "^7.0.1",
"hosted-git-info": "^7.0.2",
"json-parse-even-better-errors": "^3.0.0",
"json-stringify-nice": "^1.1.4",
"minimatch": "^9.0.4",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"fs-minipass": "^3.0.3",
"glob": "^10.3.12",
"graceful-fs": "^4.2.11",
"hosted-git-info": "^7.0.1",
"hosted-git-info": "^7.0.2",
"ini": "^4.1.2",
"init-package-json": "^6.0.2",
"is-cidr": "^5.0.5",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/arborist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"bin-links": "^4.0.4",
"cacache": "^18.0.3",
"common-ancestor-path": "^1.0.1",
"hosted-git-info": "^7.0.1",
"hosted-git-info": "^7.0.2",
"json-parse-even-better-errors": "^3.0.0",
"json-stringify-nice": "^1.1.4",
"minimatch": "^9.0.4",
Expand Down

0 comments on commit 714e3e1

Please sign in to comment.