mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
35 lines
865 B
JavaScript
35 lines
865 B
JavaScript
const fs = require('fs-extra');
|
|
const path = require('path');
|
|
const del = require('del');
|
|
const prettier = require('prettier');
|
|
|
|
const src = path.resolve(__dirname, '../lang');
|
|
const dest = path.resolve(__dirname, '../build/messages');
|
|
const files = fs.readdirSync(src);
|
|
|
|
del.sync([path.join(dest)]);
|
|
|
|
/*
|
|
This script takes the files from the `lang` folder and formats them into
|
|
the format that format-js expects.
|
|
*/
|
|
async function run() {
|
|
await fs.ensureDir(dest);
|
|
|
|
files.forEach(file => {
|
|
const lang = require(`../lang/${file}`);
|
|
const keys = Object.keys(lang).sort();
|
|
|
|
const formatted = keys.reduce((obj, key) => {
|
|
obj[key] = { defaultMessage: lang[key] };
|
|
return obj;
|
|
}, {});
|
|
|
|
const json = prettier.format(JSON.stringify(formatted), { parser: 'json' });
|
|
|
|
fs.writeFileSync(path.resolve(dest, file), json);
|
|
});
|
|
}
|
|
|
|
run();
|