Files
oh-my-opencode/packages/omo-codex/plugin/components/lsp/scripts/clean-dist.mjs
T

6 lines
199 B
JavaScript
Raw 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 });