17 lines
416 B
TypeScript
17 lines
416 B
TypeScript
import path from "node:path"
|
|
|
|
import { config } from "dotenv"
|
|
|
|
config({ path: `${process.cwd()}/.env.local` })
|
|
|
|
const filteredExtractPath = path.resolve(__dirname, "translations")
|
|
const allExtractPath = path.resolve(__dirname, "translations-all")
|
|
|
|
async function main() {
|
|
const { download } = await import("./lokalise")
|
|
await download(filteredExtractPath, false)
|
|
await download(allExtractPath, true)
|
|
}
|
|
|
|
main()
|