6 lines
343 B
TypeScript
6 lines
343 B
TypeScript
import { command as compile } from "../node_modules/@lingui/cli/dist/lingui-compile.js";
|
|
import { getConfig } from "../node_modules/@lingui/conf/dist/index.mjs";
|
|
|
|
const config = getConfig({ cwd: Deno.cwd() });
|
|
await compile(config, { watch: false, namespace: undefined, typescript: false, allowEmpty: true, workersOptions: { poolSize: 0 } });
|