Updated lang files.

This commit is contained in:
Mike Cao 2025-10-06 12:11:26 -07:00
commit 3e163940da
11 changed files with 3087 additions and 198 deletions

View file

@ -1,7 +1,6 @@
import path from 'node:path';
import fs from 'fs-extra';
import del from 'del';
import prettier from 'prettier';
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
@ -27,7 +26,7 @@ async function run() {
return obj;
}, {});
const json = prettier.format(JSON.stringify(formatted), { parser: 'json' });
const json = JSON.stringify(formatted, null, 2);
fs.writeFileSync(path.resolve(dest, file), json);
});