mirror of
https://github.com/type-challenges/type-challenges.git
synced 2025-12-08 19:06:13 +00:00
Co-authored-by: kabrunko-dev <kabrunko.dev@protonmail.com> Co-authored-by: kabrunko <142346548+kabrunko-dev@users.noreply.github.com>
13 lines
339 B
TypeScript
13 lines
339 B
TypeScript
import { updateREADMEs } from './readme'
|
|
import { translateAllQuizes } from './translate'
|
|
import { defaultLocale } from './locales'
|
|
|
|
async function run() {
|
|
await translateAllQuizes(defaultLocale, 'zh-CN')
|
|
await translateAllQuizes(defaultLocale, 'ja')
|
|
await translateAllQuizes(defaultLocale, 'pt-BR')
|
|
await updateREADMEs()
|
|
}
|
|
|
|
run()
|