mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
30 lines
827 B
TypeScript
30 lines
827 B
TypeScript
import path from 'path'
|
|
import fs from 'fs/promises'
|
|
import chalk from 'chalk'
|
|
import consola from 'consola'
|
|
import { docRoot, errorAndExit } from '@element-plus/build-utils'
|
|
|
|
const credentialPlaceholder = 'API_TOKEN_PLACEHOLDER'
|
|
|
|
const CREDENTIAL = process.env.CROWDIN_TOKEN
|
|
if (!CREDENTIAL) {
|
|
errorAndExit(new Error('Environment variable CROWDIN_TOKEN cannot be empty'))
|
|
}
|
|
|
|
;(async () => {
|
|
consola.debug(chalk.cyan('Fetching Crowdin credential'))
|
|
const configPath = path.resolve(docRoot, 'crowdin.yml')
|
|
try {
|
|
const file = await fs.readFile(configPath, {
|
|
encoding: 'utf-8',
|
|
})
|
|
await fs.writeFile(
|
|
configPath,
|
|
file.replace(credentialPlaceholder, CREDENTIAL)
|
|
)
|
|
consola.success(chalk.green('Crowdin credential update successfully'))
|
|
} catch (e: any) {
|
|
errorAndExit(e)
|
|
}
|
|
})()
|