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

12 lines
194 B
TypeScript

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