Explorar el Código

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

factor2
Edgars Voroboks hace 11 meses
padre
commit
aa506a7607
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      lang/update-translation.js

+ 1
- 1
lang/update-translation.js Ver fichero

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

Loading…
Cancelar
Guardar