element-plus/docs/.vitepress/build/crowdin-credentials.ts
三咲智子 fb94222bb4
build!: simplify build & support native esm import (#3900)
* build: refactor build

* refactor: reorganize files

* refactor: refactor build

* build: improve perf

* fix: scripts

* build: add rollup-plugin-filesize

* chore: scripts ignore no-console

* build: disable tree-shaking

* build: improve code

* build: add sourcemap

* build: add banner

* refactor: remove annotation
2021-10-18 14:45:57 +08:00

30 lines
824 B
TypeScript

import path from 'path'
import fs from 'fs/promises'
import chalk from 'chalk'
import { errorAndExit } from '../../../build/utils/log'
import { docRoot } from '../utils/paths'
const credentialPlaceholder = 'API_TOKEN_PLACEHOLDER'
const CREDENTIAL = process.env.CROWDIN_TOKEN
if (!CREDENTIAL) {
errorAndExit(new Error('Environment variable CROWDIN_TOKEN cannot be empty'))
}
;(async () => {
console.info(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)
)
console.info(chalk.green('Crowdin credential update successfully'))
} catch (e: any) {
errorAndExit(e)
}
})()