Files
gerbeur/scripts/lingui-compile.ts
khannurien 856511777c
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 46s
chore: smaller docker image, simplification pass on environment variables, fix direct navigation without vite
2026-04-08 19:43:19 +00:00

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 },
});