mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +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
24 lines
439 B
TypeScript
24 lines
439 B
TypeScript
import process from 'process'
|
|
import chalk from 'chalk'
|
|
|
|
export function cyan(str: string) {
|
|
console.log(chalk.cyan(str))
|
|
}
|
|
|
|
export function yellow(str: string) {
|
|
console.log(chalk.yellow(str))
|
|
}
|
|
|
|
export function green(str: string) {
|
|
console.log(chalk.green(str))
|
|
}
|
|
|
|
export function red(str: string) {
|
|
console.error(chalk.red(str))
|
|
}
|
|
|
|
export function errorAndExit(e: Error): never {
|
|
red(e.stack ?? e.message)
|
|
process.exit(1)
|
|
}
|