import path from "node:path" import { download } from "./lokalise" const extractPath = path.resolve(__dirname, "translations") async function main() { await download(extractPath) } main()