From 2c8ed66bab939056480996de97cae0a018c0489f Mon Sep 17 00:00:00 2001 From: Cdm2883 Date: Fri, 9 Aug 2024 16:56:30 +0800 Subject: [PATCH] fix: clear command --- scripts/clear.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/clear.js b/scripts/clear.js index b0fb87f..7ed9c22 100644 --- a/scripts/clear.js +++ b/scripts/clear.js @@ -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();