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:
authorLuke Karrys <luke@lukekarrys.com>2022-08-25 23:57:11 +0300
committerLuke Karrys <luke@lukekarrys.com>2022-08-26 01:02:40 +0300
commitd7e9a8ed5b7c1f9ca8d34e86388a134b2f48fc15 (patch)
tree3b3d08dab2a3c0f7d5b5454d8cd1f9fda3e37937 /node_modules
parent2c4e38728f25fd32624df2eb5bbf61c2c40c8ad5 (diff)
deps: ini@3.0.1
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/ini/lib/ini.js4
-rw-r--r--node_modules/ini/package.json6
2 files changed, 6 insertions, 4 deletions
diff --git a/node_modules/ini/lib/ini.js b/node_modules/ini/lib/ini.js
index 965e70249..d05682b60 100644
--- a/node_modules/ini/lib/ini.js
+++ b/node_modules/ini/lib/ini.js
@@ -186,7 +186,9 @@ const unsafe = (val, doUnesc) => {
}
try {
val = JSON.parse(val)
- } catch (_) {}
+ } catch {
+ // ignore errors
+ }
} else {
// walk the val to find the first not-escaped ; character
let esc = false
diff --git a/node_modules/ini/package.json b/node_modules/ini/package.json
index 1fe32c8f1..e41c0f0f3 100644
--- a/node_modules/ini/package.json
+++ b/node_modules/ini/package.json
@@ -2,7 +2,7 @@
"author": "GitHub Inc.",
"name": "ini",
"description": "An ini encoder/decoder for node",
- "version": "3.0.0",
+ "version": "3.0.1",
"repository": {
"type": "git",
"url": "https://github.com/npm/ini.git"
@@ -23,7 +23,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.0.1",
- "@npmcli/template-oss": "3.2.2",
+ "@npmcli/template-oss": "3.5.0",
"tap": "^16.0.1"
},
"license": "ISC",
@@ -36,6 +36,6 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "3.2.2"
+ "version": "3.5.0"
}
}