2024-08-07 22:54:17 +08:00

16 lines
395 B
JavaScript

import fs from "node:fs";
import paths from "node:path";
export default function clear() {
deletePathForce("./site")
}
function deletePathForce(path) {
if (!fs.existsSync(path)) return;
if (fs.lstatSync(path).isFile()) return fs.unlinkSync(path);
fs.readdirSync(path)
.map(name => paths.resolve(path, name))
.forEach(deletePathForce);
fs.rmdirSync(path);
}