refactor: drop the deprecated compiler re-export shims

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-20 01:33:48 +05:30
co-authored by Claude Opus 5
parent e7e7b58160
commit 97d60d0ba8
8 changed files with 20 additions and 84 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { describe, expect, test } from "bun:test";
import { parse, type PropDecl } from "../src/parser.ts";
import { parse, type PropDecl } from "@wrnexus/syntax";
const compact = (source: string) =>
parse(source).props.map(({ name, default: value }: PropDecl) => ({ name, value }));