Integrate crabrl parser into taxonomy hydration

This commit is contained in:
2026-03-16 15:18:01 -04:00
parent cf084793ed
commit a58b07456e
23 changed files with 4696 additions and 2466 deletions

6
test/vitest.setup.ts Normal file
View File

@@ -0,0 +1,6 @@
const bunGlobal = ((globalThis as { Bun?: Record<string, unknown> }).Bun ??=
{});
if (typeof bunGlobal.sleep !== "function") {
bunGlobal.sleep = async (_ms: number) => {};
}