mirror of
https://github.com/type-challenges/type-challenges.git
synced 2026-01-18 14:36:47 +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()
|