mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-05 19:24:39 +00:00
11 lines
276 B
JavaScript
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 */
|
|
}
|