Skip to content

Commit d7e9a8e

Browse files
committed
deps: ini@3.0.1
1 parent 2c4e387 commit d7e9a8e

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

node_modules/ini/lib/ini.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,9 @@ const unsafe = (val, doUnesc) => {
186186
}
187187
try {
188188
val = JSON.parse(val)
189-
} catch (_) {}
189+
} catch {
190+
// ignore errors
191+
}
190192
} else {
191193
// walk the val to find the first not-escaped ; character
192194
let esc = false

node_modules/ini/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "GitHub Inc.",
33
"name": "ini",
44
"description": "An ini encoder/decoder for node",
5-
"version": "3.0.0",
5+
"version": "3.0.1",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/npm/ini.git"
@@ -23,7 +23,7 @@
2323
},
2424
"devDependencies": {
2525
"@npmcli/eslint-config": "^3.0.1",
26-
"@npmcli/template-oss": "3.2.2",
26+
"@npmcli/template-oss": "3.5.0",
2727
"tap": "^16.0.1"
2828
},
2929
"license": "ISC",
@@ -36,6 +36,6 @@
3636
},
3737
"templateOSS": {
3838
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
39-
"version": "3.2.2"
39+
"version": "3.5.0"
4040
}
4141
}

package-lock.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"glob": "^8.0.1",
111111
"graceful-fs": "^4.2.10",
112112
"hosted-git-info": "^5.1.0",
113-
"ini": "^3.0.0",
113+
"ini": "^3.0.1",
114114
"init-package-json": "^3.0.2",
115115
"is-cidr": "^4.0.2",
116116
"json-parse-even-better-errors": "^2.3.1",
@@ -4017,9 +4017,9 @@
40174017
"license": "ISC"
40184018
},
40194019
"node_modules/ini": {
4020-
"version": "3.0.0",
4021-
"resolved": "https://registry.npmjs.org/ini/-/ini-3.0.0.tgz",
4022-
"integrity": "sha512-TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw==",
4020+
"version": "3.0.1",
4021+
"resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz",
4022+
"integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==",
40234023
"inBundle": true,
40244024
"engines": {
40254025
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"glob": "^8.0.1",
7676
"graceful-fs": "^4.2.10",
7777
"hosted-git-info": "^5.1.0",
78-
"ini": "^3.0.0",
78+
"ini": "^3.0.1",
7979
"init-package-json": "^3.0.2",
8080
"is-cidr": "^4.0.2",
8181
"json-parse-even-better-errors": "^2.3.1",

0 commit comments

Comments
 (0)