fix(lang): Add newline at the end of generated lang file

This commit is contained in:
Edgars Voroboks
2024-11-01 10:56:26 +02:00
committed by Saúl Ibarra Corretgé
parent afac97e7d4
commit aa506a7607

View File

@@ -35,4 +35,4 @@ for (const path of paths) {
const data = JSON.stringify(result, undefined, 4); const data = JSON.stringify(result, undefined, 4);
fs.writeFileSync(`./${targetLangFile}`, data); fs.writeFileSync(`./${targetLangFile}`, data + "\n");