refac: rewrite a lil in rust

This commit is contained in:
2026-05-04 17:38:49 +09:30
parent 608fc96c4e
commit aa1e1a925e
42 changed files with 1367 additions and 103 deletions
+10
View File
@@ -0,0 +1,10 @@
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 */
}