refactor(tui): extract standalone package (#31193)

This commit is contained in:
Dax
2026-06-07 05:24:27 +00:00
committed by GitHub
parent 7a2c49e762
commit 106f8e94d6
84 changed files with 1148 additions and 1919 deletions
+2 -4
View File
@@ -1,8 +1,6 @@
import { expect, test } from "bun:test"
import { createRenderer, createTuiRenderer, mount, run, tui } from "../src"
import { run } from "../src"
test("exports the canonical application lifecycle", () => {
expect(run).toBe(tui)
expect(createRenderer).toBe(createTuiRenderer)
expect(typeof mount).toBe("function")
expect(typeof run).toBe("function")
})