UNPKG

@vant/cli

Version:

Vant CLI is a tool for building vue component library. You can quickly build a full-featured Vue component library with vant-cli.

12 lines (11 loc) 307 B
import fse from 'fs-extra'; import { ES_DIR, LIB_DIR, DIST_DIR, SITE_DIST_DIR, } from '../common/constant.js'; const { remove } = fse; export async function clean() { await Promise.all([ remove(ES_DIR), remove(LIB_DIR), remove(DIST_DIR), remove(SITE_DIST_DIR), ]); }