mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import ora from 'ora';
|
|
import chalk from 'chalk';
|
|
import consola from 'consola';
|
|
import { ROOT } from '../common/constant.js';
|
|
|
|
export function slimPath(path: string) {
|
|
return chalk.yellow(path.replace(ROOT, ''));
|
|
}
|
|
|
|
export { ora, consola };
|