chore: 包内依赖改成workspace:*,更新release脚本
This commit is contained in:
@@ -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));
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user