| 6 | const sponsorsPath = `${rootDir}/packages/tools/sponsors.json`; |
| 7 | |
| 8 | interface Sponsor { |
| 9 | name: string; |
| 10 | id: string; |
| 11 | } |
| 12 | |
| 13 | async function main() { |
| 14 | const sponsors: Sponsor[] = (JSON.parse(await readFile(sponsorsPath, 'utf8'))).github; |
nothing calls this directly
no outgoing calls
no test coverage detected