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