Files
oh-my-opencode/packages/omo-codex/plugin/components/lsp/scripts/clean-dist.mjs
T
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 });