12 lines
194 B
TypeScript
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()
|