Files
gerbeur/scripts/lingui-extract.ts
khannurien 9c889a9531
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 46s
v3: fixed search in prod, lots of UI fixes across the app
2026-04-09 21:54:07 +00:00

12 lines
320 B
TypeScript

import extract from "../node_modules/@lingui/cli/dist/lingui-extract.js";
import { getConfig } from "../node_modules/@lingui/conf/dist/index.mjs";
const config = getConfig({ cwd: Deno.cwd() });
await extract(config, {
verbose: false,
watch: false,
files: [],
clean: true,
workersOptions: { poolSize: 0 },
});