Install ini package for parsing INI files
parent
3b8b03f6c1
commit
626bea34d5
File diff suppressed because it is too large
Load Diff
|
@ -33,6 +33,7 @@
|
||||||
"@actions/http-client": "^2.2.1",
|
"@actions/http-client": "^2.2.1",
|
||||||
"@actions/io": "^1.0.2",
|
"@actions/io": "^1.0.2",
|
||||||
"@actions/tool-cache": "^2.0.1",
|
"@actions/tool-cache": "^2.0.1",
|
||||||
|
"ini": "^5.0.0",
|
||||||
"semver": "^7.6.3",
|
"semver": "^7.6.3",
|
||||||
"uuid": "^9.0.1"
|
"uuid": "^9.0.1"
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
declare module 'ini' {
|
||||||
|
function parse(ini: string): Record<string, string | object>;
|
||||||
|
}
|
Loading…
Reference in New Issue