Files
2026-05-30 19:12:06 +09:00

6 lines
199 B
JavaScript

#!/usr/bin/env node
import { rm } from "node:fs/promises";
import { fileURLToPath } from "node:url";
await rm(fileURLToPath(new URL("../dist/", import.meta.url)), { recursive: true, force: true });