mirror of
https://github.com/youzan/vant.git
synced 2026-03-26 02:03:21 +08:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import { createSpinner } from 'nanospinner';
|
|
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 { createSpinner, consola };
|