Skip to content

Commit

Permalink
deps: @npmcli/git@5.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed May 7, 2024
1 parent effe910 commit 6dfaebb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
6 changes: 3 additions & 3 deletions node_modules/@npmcli/git/lib/errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class GitError extends Error {
}

class GitConnectionError extends GitError {
constructor (message) {
constructor () {
super('A git connection error occurred')
}

Expand All @@ -18,13 +18,13 @@ class GitConnectionError extends GitError {
}

class GitPathspecError extends GitError {
constructor (message) {
constructor () {
super('The git reference could not be found')
}
}

class GitUnknownError extends GitError {
constructor (message) {
constructor () {
super('An unknown git error occurred')
}
}
Expand Down
8 changes: 4 additions & 4 deletions node_modules/@npmcli/git/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@npmcli/git",
"version": "5.0.6",
"version": "5.0.7",
"main": "lib/index.js",
"files": [
"bin/",
Expand All @@ -9,7 +9,7 @@
"description": "a util for spawning git from npm CLI contexts",
"repository": {
"type": "git",
"url": "https://github.com/npm/git.git"
"url": "git+https://github.com/npm/git.git"
},
"author": "GitHub Inc.",
"license": "ISC",
Expand All @@ -31,7 +31,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.21.3",
"@npmcli/template-oss": "4.22.0",
"npm-package-arg": "^11.0.0",
"slash": "^3.0.0",
"tap": "^16.0.1"
Expand All @@ -51,7 +51,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.21.3",
"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 @@ -162,7 +162,7 @@
"devDependencies": {
"@npmcli/docs": "^1.0.0",
"@npmcli/eslint-config": "^4.0.2",
"@npmcli/git": "^5.0.6",
"@npmcli/git": "^5.0.7",
"@npmcli/mock-globals": "^1.0.0",
"@npmcli/mock-registry": "^1.0.0",
"@npmcli/template-oss": "4.22.0",
Expand Down Expand Up @@ -1580,10 +1580,11 @@
}
},
"node_modules/@npmcli/git": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.6.tgz",
"integrity": "sha512-4x/182sKXmQkf0EtXxT26GEsaOATpD7WVtza5hrYivWZeo6QefC6xq9KAXrnjtFKBZ4rZwR7aX/zClYYXgtwLw==",
"version": "5.0.7",
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.7.tgz",
"integrity": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==",
"inBundle": true,
"license": "ISC",
"dependencies": {
"@npmcli/promise-spawn": "^7.0.0",
"lru-cache": "^10.0.1",
Expand Down Expand Up @@ -15055,7 +15056,7 @@
"version": "6.0.1",
"license": "ISC",
"dependencies": {
"@npmcli/git": "^5.0.6",
"@npmcli/git": "^5.0.7",
"@npmcli/run-script": "^8.1.0",
"json-parse-even-better-errors": "^3.0.0",
"proc-log": "^4.2.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
"devDependencies": {
"@npmcli/docs": "^1.0.0",
"@npmcli/eslint-config": "^4.0.2",
"@npmcli/git": "^5.0.6",
"@npmcli/git": "^5.0.7",
"@npmcli/mock-globals": "^1.0.0",
"@npmcli/mock-registry": "^1.0.0",
"@npmcli/template-oss": "4.22.0",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmversion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"tap": "^16.3.8"
},
"dependencies": {
"@npmcli/git": "^5.0.6",
"@npmcli/git": "^5.0.7",
"@npmcli/run-script": "^8.1.0",
"json-parse-even-better-errors": "^3.0.0",
"proc-log": "^4.2.0",
Expand Down

0 comments on commit 6dfaebb

Please sign in to comment.