mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
16f069ebbe
* Revert "build!: simplify build & support native esm import (#3900)"
This reverts commit fb94222bb4
.
* remove module
* Fix linter
* Add @element-plus/icons as dependency
* update pnpm lock file
* temporary lock element-plus at 1.1.0-beta.20
23 lines
438 B
TypeScript
23 lines
438 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)
|
|
}
|