Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
deps: ini@3.0.1
  • Loading branch information
lukekarrys committed Aug 25, 2022
1 parent 2c4e387 commit d7e9a8e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion node_modules/ini/lib/ini.js
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions node_modules/ini/package.json
Expand Up @@ -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"
Expand All @@ -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",
Expand All @@ -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"
}
}
8 changes: 4 additions & 4 deletions package-lock.json
Expand Up @@ -110,7 +110,7 @@
"glob": "^8.0.1",
"graceful-fs": "^4.2.10",
"hosted-git-info": "^5.1.0",
"ini": "^3.0.0",
"ini": "^3.0.1",
"init-package-json": "^3.0.2",
"is-cidr": "^4.0.2",
"json-parse-even-better-errors": "^2.3.1",
Expand Down Expand Up @@ -4017,9 +4017,9 @@
"license": "ISC"
},
"node_modules/ini": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ini/-/ini-3.0.0.tgz",
"integrity": "sha512-TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw==",
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz",
"integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==",
"inBundle": true,
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -75,7 +75,7 @@
"glob": "^8.0.1",
"graceful-fs": "^4.2.10",
"hosted-git-info": "^5.1.0",
"ini": "^3.0.0",
"ini": "^3.0.1",
"init-package-json": "^3.0.2",
"is-cidr": "^4.0.2",
"json-parse-even-better-errors": "^2.3.1",
Expand Down

0 comments on commit d7e9a8e

Please sign in to comment.