Skip to content

Commit 6dfaebb

Browse files
committed
deps: @npmcli/git@5.0.7
1 parent effe910 commit 6dfaebb

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

node_modules/@npmcli/git/lib/errors.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class GitError extends Error {
88
}
99

1010
class GitConnectionError extends GitError {
11-
constructor (message) {
11+
constructor () {
1212
super('A git connection error occurred')
1313
}
1414

@@ -18,13 +18,13 @@ class GitConnectionError extends GitError {
1818
}
1919

2020
class GitPathspecError extends GitError {
21-
constructor (message) {
21+
constructor () {
2222
super('The git reference could not be found')
2323
}
2424
}
2525

2626
class GitUnknownError extends GitError {
27-
constructor (message) {
27+
constructor () {
2828
super('An unknown git error occurred')
2929
}
3030
}

node_modules/@npmcli/git/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@npmcli/git",
3-
"version": "5.0.6",
3+
"version": "5.0.7",
44
"main": "lib/index.js",
55
"files": [
66
"bin/",
@@ -9,7 +9,7 @@
99
"description": "a util for spawning git from npm CLI contexts",
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/npm/git.git"
12+
"url": "git+https://github.com/npm/git.git"
1313
},
1414
"author": "GitHub Inc.",
1515
"license": "ISC",
@@ -31,7 +31,7 @@
3131
},
3232
"devDependencies": {
3333
"@npmcli/eslint-config": "^4.0.0",
34-
"@npmcli/template-oss": "4.21.3",
34+
"@npmcli/template-oss": "4.22.0",
3535
"npm-package-arg": "^11.0.0",
3636
"slash": "^3.0.0",
3737
"tap": "^16.0.1"
@@ -51,7 +51,7 @@
5151
},
5252
"templateOSS": {
5353
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
54-
"version": "4.21.3",
54+
"version": "4.22.0",
5555
"publish": true
5656
}
5757
}

package-lock.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
"devDependencies": {
163163
"@npmcli/docs": "^1.0.0",
164164
"@npmcli/eslint-config": "^4.0.2",
165-
"@npmcli/git": "^5.0.6",
165+
"@npmcli/git": "^5.0.7",
166166
"@npmcli/mock-globals": "^1.0.0",
167167
"@npmcli/mock-registry": "^1.0.0",
168168
"@npmcli/template-oss": "4.22.0",
@@ -1580,10 +1580,11 @@
15801580
}
15811581
},
15821582
"node_modules/@npmcli/git": {
1583-
"version": "5.0.6",
1584-
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.6.tgz",
1585-
"integrity": "sha512-4x/182sKXmQkf0EtXxT26GEsaOATpD7WVtza5hrYivWZeo6QefC6xq9KAXrnjtFKBZ4rZwR7aX/zClYYXgtwLw==",
1583+
"version": "5.0.7",
1584+
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.7.tgz",
1585+
"integrity": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==",
15861586
"inBundle": true,
1587+
"license": "ISC",
15871588
"dependencies": {
15881589
"@npmcli/promise-spawn": "^7.0.0",
15891590
"lru-cache": "^10.0.1",
@@ -15055,7 +15056,7 @@
1505515056
"version": "6.0.1",
1505615057
"license": "ISC",
1505715058
"dependencies": {
15058-
"@npmcli/git": "^5.0.6",
15059+
"@npmcli/git": "^5.0.7",
1505915060
"@npmcli/run-script": "^8.1.0",
1506015061
"json-parse-even-better-errors": "^3.0.0",
1506115062
"proc-log": "^4.2.0",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
"devDependencies": {
194194
"@npmcli/docs": "^1.0.0",
195195
"@npmcli/eslint-config": "^4.0.2",
196-
"@npmcli/git": "^5.0.6",
196+
"@npmcli/git": "^5.0.7",
197197
"@npmcli/mock-globals": "^1.0.0",
198198
"@npmcli/mock-registry": "^1.0.0",
199199
"@npmcli/template-oss": "4.22.0",

workspaces/libnpmversion/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"tap": "^16.3.8"
3838
},
3939
"dependencies": {
40-
"@npmcli/git": "^5.0.6",
40+
"@npmcli/git": "^5.0.7",
4141
"@npmcli/run-script": "^8.1.0",
4242
"json-parse-even-better-errors": "^3.0.0",
4343
"proc-log": "^4.2.0",

0 commit comments

Comments
 (0)