From c6386bf11c543a71603f2907888c823b3f0725ca Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Thu, 23 Jan 2025 06:32:06 +0500 Subject: [PATCH] deletion of output folder on exit from watch --- src/watch.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/watch.js b/src/watch.js index 72068b2..c6df766 100644 --- a/src/watch.js +++ b/src/watch.js @@ -67,6 +67,7 @@ function onExit() { log("INFO", `Deleted "index.html" file`); if (fs.existsSync(OutPath) && OutPath != ParPath) { + fs.rmdirSync(`${OutPath}`, { recursive: true }); log("INFO", `Deleted output folder`); }