()
| 3 | const path = require("path"); |
| 4 | |
| 5 | async function getContributors() { |
| 6 | const allContributors = await getAllContributors(); |
| 7 | fs.writeFileSync( |
| 8 | path.join(process.cwd(), "data/contributors.json"), |
| 9 | JSON.stringify(allContributors, null, 2), |
| 10 | "utf-8" |
| 11 | ); |
| 12 | } |
| 13 | |
| 14 | getContributors(); |
no test coverage detected