()
| 8 | const loaderPath = '../src/languageLoaders.js'; |
| 9 | |
| 10 | async function fetchData() { |
| 11 | const filePath = path.resolve(__dirname, rawDataPath); |
| 12 | const fileContent = await fs.readFile(filePath); |
| 13 | return yaml.parse(fileContent); |
| 14 | } |
| 15 | |
| 16 | function outputData(data) { |
| 17 | const filePath = path.resolve(__dirname, outputPath); |