Skip to content

Commit

Permalink
deps: @npmcli/git@3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzy committed Aug 17, 2022
1 parent 7d564bd commit 5a56686
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion node_modules/@npmcli/git/lib/which.js
Expand Up @@ -3,7 +3,9 @@ const which = require('which')
let gitPath
try {
gitPath = which.sync('git')
} catch (e) {}
} catch {
// ignore errors
}

module.exports = (opts = {}) => {
if (opts.git) {
Expand Down
8 changes: 5 additions & 3 deletions node_modules/@npmcli/git/package.json
@@ -1,6 +1,6 @@
{
"name": "@npmcli/git",
"version": "3.0.1",
"version": "3.0.2",
"main": "lib/index.js",
"files": [
"bin/",
Expand Down Expand Up @@ -31,7 +31,9 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.0.1",
"@npmcli/template-oss": "3.2.2",
"@npmcli/template-oss": "3.5.0",
"npm-package-arg": "^9.1.0",
"rimraf": "^3.0.2",
"slash": "^3.0.0",
"tap": "^16.0.1"
},
Expand All @@ -52,6 +54,6 @@
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"windowsCI": false,
"version": "3.2.2"
"version": "3.5.0"
}
}
6 changes: 3 additions & 3 deletions package-lock.json
Expand Up @@ -929,9 +929,9 @@
}
},
"node_modules/@npmcli/git": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-3.0.1.tgz",
"integrity": "sha512-UU85F/T+F1oVn3IsB/L6k9zXIMpXBuUBE25QDH0SsURwT6IOBqkC7M16uqo2vVZIyji3X1K4XH9luip7YekH1A==",
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-3.0.2.tgz",
"integrity": "sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==",
"inBundle": true,
"dependencies": {
"@npmcli/promise-spawn": "^3.0.0",
Expand Down

0 comments on commit 5a56686

Please sign in to comment.