All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 46s
12 lines
354 B
TypeScript
12 lines
354 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 },
|
|
});
|