Skip to content

Commit b048592

Browse files
committed
1 parent c54a84a commit b048592

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

node_modules/ini/lib/ini.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const safe = val => {
225225
return val.split(';').join('\\;').split('#').join('\\#')
226226
}
227227

228-
const unsafe = (val, doUnesc) => {
228+
const unsafe = val => {
229229
val = (val || '').trim()
230230
if (isQuoted(val)) {
231231
// remove the single quotes before calling JSON.parse

node_modules/ini/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"author": "GitHub Inc.",
33
"name": "ini",
44
"description": "An ini encoder/decoder for node",
5-
"version": "4.1.1",
5+
"version": "4.1.2",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/npm/ini.git"
99
},
1010
"main": "lib/ini.js",
1111
"scripts": {
1212
"eslint": "eslint",
13-
"lint": "eslint \"**/*.js\"",
13+
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
1414
"lintfix": "npm run lint -- --fix",
1515
"test": "tap",
1616
"snap": "tap",
@@ -20,7 +20,7 @@
2020
},
2121
"devDependencies": {
2222
"@npmcli/eslint-config": "^4.0.0",
23-
"@npmcli/template-oss": "4.15.1",
23+
"@npmcli/template-oss": "4.21.3",
2424
"tap": "^16.0.1"
2525
},
2626
"license": "ISC",
@@ -33,7 +33,7 @@
3333
},
3434
"templateOSS": {
3535
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
36-
"version": "4.15.1",
36+
"version": "4.21.3",
3737
"publish": "true"
3838
},
3939
"tap": {

package-lock.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"glob": "^10.3.12",
111111
"graceful-fs": "^4.2.11",
112112
"hosted-git-info": "^7.0.1",
113-
"ini": "^4.1.1",
113+
"ini": "^4.1.2",
114114
"init-package-json": "^6.0.0",
115115
"is-cidr": "^5.0.3",
116116
"json-parse-even-better-errors": "^3.0.1",
@@ -6364,9 +6364,9 @@
63646364
"dev": true
63656365
},
63666366
"node_modules/ini": {
6367-
"version": "4.1.1",
6368-
"resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz",
6369-
"integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==",
6367+
"version": "4.1.2",
6368+
"resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz",
6369+
"integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==",
63706370
"inBundle": true,
63716371
"engines": {
63726372
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
@@ -16106,7 +16106,7 @@
1610616106
"dependencies": {
1610716107
"@npmcli/map-workspaces": "^3.0.2",
1610816108
"ci-info": "^4.0.0",
16109-
"ini": "^4.1.0",
16109+
"ini": "^4.1.2",
1611016110
"nopt": "^7.0.0",
1611116111
"proc-log": "^3.0.0",
1611216112
"read-package-json-fast": "^3.0.2",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"glob": "^10.3.12",
7474
"graceful-fs": "^4.2.11",
7575
"hosted-git-info": "^7.0.1",
76-
"ini": "^4.1.1",
76+
"ini": "^4.1.2",
7777
"init-package-json": "^6.0.0",
7878
"is-cidr": "^5.0.3",
7979
"json-parse-even-better-errors": "^3.0.1",

workspaces/config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"dependencies": {
3939
"@npmcli/map-workspaces": "^3.0.2",
4040
"ci-info": "^4.0.0",
41-
"ini": "^4.1.0",
41+
"ini": "^4.1.2",
4242
"nopt": "^7.0.0",
4343
"proc-log": "^3.0.0",
4444
"read-package-json-fast": "^3.0.2",

0 commit comments

Comments
 (0)