UNPKG

fe-core-cli

Version:

All-in-one scaffolding, cli integrated with Vue3 ecological chain, cli of H5 page, mock template cli of Node

7 lines (5 loc) 201 B
import { remove } from 'fs-extra' export async function delPath(glob: string | string[]) { const globs = Array.isArray(glob) ? glob : [glob] await Promise.all(globs.map((path) => remove(path))) }