Skip to content

Commit 5a56686

Browse files
committed
deps: @npmcli/[email protected]
1 parent 7d564bd commit 5a56686

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ const which = require('which')
33
let gitPath
44
try {
55
gitPath = which.sync('git')
6-
} catch (e) {}
6+
} catch {
7+
// ignore errors
8+
}
79

810
module.exports = (opts = {}) => {
911
if (opts.git) {

node_modules/@npmcli/git/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@npmcli/git",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"main": "lib/index.js",
55
"files": [
66
"bin/",
@@ -31,7 +31,9 @@
3131
},
3232
"devDependencies": {
3333
"@npmcli/eslint-config": "^3.0.1",
34-
"@npmcli/template-oss": "3.2.2",
34+
"@npmcli/template-oss": "3.5.0",
35+
"npm-package-arg": "^9.1.0",
36+
"rimraf": "^3.0.2",
3537
"slash": "^3.0.0",
3638
"tap": "^16.0.1"
3739
},
@@ -52,6 +54,6 @@
5254
"templateOSS": {
5355
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
5456
"windowsCI": false,
55-
"version": "3.2.2"
57+
"version": "3.5.0"
5658
}
5759
}

package-lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -929,9 +929,9 @@
929929
}
930930
},
931931
"node_modules/@npmcli/git": {
932-
"version": "3.0.1",
933-
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-3.0.1.tgz",
934-
"integrity": "sha512-UU85F/T+F1oVn3IsB/L6k9zXIMpXBuUBE25QDH0SsURwT6IOBqkC7M16uqo2vVZIyji3X1K4XH9luip7YekH1A==",
932+
"version": "3.0.2",
933+
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-3.0.2.tgz",
934+
"integrity": "sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==",
935935
"inBundle": true,
936936
"dependencies": {
937937
"@npmcli/promise-spawn": "^3.0.0",

0 commit comments

Comments
 (0)