Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Fritz <fritzy@github.com>2022-08-17 22:22:50 +0300
committerNathan Fritz <fritzy@github.com>2022-08-17 22:44:30 +0300
commit5a566863ca96f641fcecacd1ad20a7c837dccfeb (patch)
treead194db300cb0134e63fe8c361d1d0a7b119c3e2 /node_modules
parent7d564bd73bcac909a922d88986e3a55fe343ca44 (diff)
deps: @npmcli/git@3.0.2
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/@npmcli/git/lib/which.js4
-rw-r--r--node_modules/@npmcli/git/package.json8
2 files changed, 8 insertions, 4 deletions
diff --git a/node_modules/@npmcli/git/lib/which.js b/node_modules/@npmcli/git/lib/which.js
index a2f690e1b..dc2a1ad21 100644
--- a/node_modules/@npmcli/git/lib/which.js
+++ b/node_modules/@npmcli/git/lib/which.js
@@ -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) {
diff --git a/node_modules/@npmcli/git/package.json b/node_modules/@npmcli/git/package.json
index 08525ae99..86b8e8539 100644
--- a/node_modules/@npmcli/git/package.json
+++ b/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/",
@@ -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"
},
@@ -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"
}
}