Files
web/apps/scandic-web/i18n/tooling/download.ts
2025-04-14 11:30:07 +00:00

15 lines
287 B
TypeScript

import path from "node:path"
import { config } from "dotenv"
config({ path: `${process.cwd()}/.env.local` })
const extractPath = path.resolve(__dirname, "translations")
async function main() {
const { download } = await import("./lokalise")
await download(extractPath)
}
main()