Skip to content

Commit 477ffd4

Browse files
committed
Install ini package for parsing INI files
1 parent b3a9c64 commit 477ffd4

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

package-lock.json

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"@actions/http-client": "^2.2.1",
3434
"@actions/io": "^1.0.2",
3535
"@actions/tool-cache": "^2.0.1",
36+
"ini": "^5.0.0",
3637
"semver": "^7.6.0",
3738
"uuid": "^9.0.1"
3839
},

src/ini.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
declare module 'ini' {
2+
function parse(ini: string): Record<string, string | object>;
3+
}

0 commit comments

Comments
 (0)