fix: clear command

This commit is contained in:
Cdm2883 2024-08-09 16:56:30 +08:00
parent 8f4f1f105b
commit 2c8ed66bab

View File

@ -1,5 +1,6 @@
import fs from "node:fs";
import paths from "node:path";
import { fileURLToPath } from "node:url";
export default function clear() {
deletePathForce("./site")
@ -13,3 +14,5 @@ function deletePathForce(path) {
.forEach(deletePathForce);
fs.rmdirSync(path);
}
if (process.argv[1] === fileURLToPath(import.meta.url)) clear();