1
0
mirror of synced 2026-03-24 03:38:34 +08:00

chore: 包内依赖改成workspace:*,更新release脚本

This commit is contained in:
roymondchen
2024-04-26 17:15:28 +08:00
parent e39a7d140f
commit 6b081fdc53
17 changed files with 1437 additions and 475 deletions

View File

@@ -1,17 +1,17 @@
import chalk from 'chalk';
import pico from 'picocolors';
export const info = (msg: string) => {
console.log(chalk.white(msg));
console.log(pico.white(msg));
};
export const error = (msg: string) => {
console.log(chalk.red(msg));
console.log(pico.red(msg));
};
export const success = (msg: string) => {
console.log(chalk.green(msg));
console.log(pico.green(msg));
};
export const execInfo = (msg: string) => {
console.log(chalk.blue(msg));
console.log(pico.blue(msg));
};