1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-node synced 2025-06-08 04:58:19 +02:00

Install ini package for parsing INI files

This commit is contained in:
Peter McEvoy 2024-10-20 12:39:07 -04:00 committed by Kyle Leonhard
parent 2d0938c1b6
commit c2ce1baec2
3 changed files with 582 additions and 996 deletions

1574
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -33,6 +33,7 @@
"@actions/http-client": "^2.2.1",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^2.0.2",
"ini": "^5.0.0",
"semver": "^7.6.3",
"uuid": "^9.0.1"
},

3
src/ini.d.ts vendored Normal file
View file

@ -0,0 +1,3 @@
declare module 'ini' {
function parse(ini: string): Record<string, string | object>;
}