AFFiNE/packages/frontend/i18n/dev.mjs

15 lines
266 B
JavaScript
Raw Normal View History

2023-06-30 11:10:35 +03:00
import { runCli } from '@magic-works/i18n-codegen';
import { fileURLToPath } from 'url';
runCli(
{
config: fileURLToPath(
new URL('../../../.i18n-codegen.json', import.meta.url)
),
2023-06-30 11:10:35 +03:00
watch: true,
},
error => {
console.error(error);
}
);