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()