Files
BetterSEQTA-Plus/scripts/rm-wasm-pkg-gitignore.mjs
2026-05-04 17:38:49 +09:30

11 lines
276 B
JavaScript

import { unlinkSync } from "node:fs";
import { join } from "node:path";
import { fileURLToPath } from "node:url";
const root = join(fileURLToPath(new URL("..", import.meta.url)));
try {
unlinkSync(join(root, "src", "wasm", "pkg", ".gitignore"));
} catch {
/* ignore */
}