UNPKG

package-proxy

Version:
8 lines (7 loc) 173 B
/** @format */ import rimraf from "rimraf"; import fs from "fs"; export const buildPath = (path) => { rimraf.sync(path); fs.mkdirSync(path, { recursive: true }); };