From 396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b Mon Sep 17 00:00:00 2001 From: Fuwn <50817549+Fuwn@users.noreply.github.com> Date: Sat, 24 Jan 2026 13:09:50 +0000 Subject: Initial commit Created from https://vercel.com/new --- scripts/format-lang.js | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 scripts/format-lang.js (limited to 'scripts/format-lang.js') diff --git a/scripts/format-lang.js b/scripts/format-lang.js new file mode 100644 index 0000000..95c390e --- /dev/null +++ b/scripts/format-lang.js @@ -0,0 +1,35 @@ +import path from 'node:path'; +import del from 'del'; +import fs from 'fs-extra'; +import { createRequire } from 'module'; + +const require = createRequire(import.meta.url); +const src = path.resolve(process.cwd(), 'src/lang'); +const dest = path.resolve(process.cwd(), '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(path.resolve(process.cwd(), `src/lang/${file}`)); + const keys = Object.keys(lang).sort(); + + const formatted = keys.reduce((obj, key) => { + obj[key] = { defaultMessage: lang[key] }; + return obj; + }, {}); + + const json = JSON.stringify(formatted, null, 2); + + fs.writeFileSync(path.resolve(dest, file), json); + }); +} + +run(); -- cgit v1.2.3