mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import ora from 'ora';
|
|
import color from 'picocolors';
|
|
import consola from 'consola';
|
|
import { ROOT } from '../common/constant.js';
|
|
|
|
export function slimPath(path: string) {
|
|
return color.yellow(path.replace(ROOT, ''));
|
|
}
|
|
|
|
export { ora, consola };
|