mirror of
https://github.com/type-challenges/type-challenges.git
synced 2025-12-08 19:06:13 +00:00
13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
import { updateREADMEs } from './readme'
|
|
import { translateAllQuizzes } from './translate'
|
|
import { defaultLocale } from './locales'
|
|
|
|
async function run() {
|
|
await translateAllQuizzes(defaultLocale, 'zh-CN')
|
|
await translateAllQuizzes(defaultLocale, 'ja')
|
|
await translateAllQuizzes(defaultLocale, 'pt-BR')
|
|
await updateREADMEs()
|
|
}
|
|
|
|
run()
|