Install ini package for parsing INI files

pull/1149/head
Peter McEvoy 2024-10-20 12:39:07 -04:00
parent 3b8b03f6c1
commit 626bea34d5
3 changed files with 634 additions and 1106 deletions

1736
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.1",
"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>;
}