mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
4e99d0b5ba
* build!: simplify build & support native esm import * 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 * build!: improve esm exports (#3871) * build: improve esm import * refactor: change mjs for esm version * chore: improve exports map * fix: add sideEffects * refactor: improve alias * build: upgrade dependencies
30 lines
824 B
TypeScript
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)
|
|
}
|
|
})()
|