Files

6 lines
199 B
JavaScript
Raw Permalink Normal View History

2026-05-30 19:12:06 +09:00
#!/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 });