mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 00:33:06 +03:00
16 lines
288 B
JavaScript
16 lines
288 B
JavaScript
import { runCli } from '@magic-works/i18n-codegen';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
runCli(
|
|
{
|
|
config: fileURLToPath(
|
|
new URL('../../../.i18n-codegen.json', import.meta.url)
|
|
),
|
|
watch: false,
|
|
},
|
|
error => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
}
|
|
);
|