Skip to content

Commit

Permalink
Install ini package for parsing INI files
Browse files Browse the repository at this point in the history
  • Loading branch information
mcevoypeter committed Oct 20, 2024
1 parent b3a9c64 commit 477ffd4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.0",
"uuid": "^9.0.1"
},
Expand Down
3 changes: 3 additions & 0 deletions src/ini.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
declare module 'ini' {
function parse(ini: string): Record<string, string | object>;
}

0 comments on commit 477ffd4

Please sign in to comment.