Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/prx-config-drop-warp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@bounded-systems/prx-config": minor
---

Remove Warp TUI support (`tui_l2_warp.ts` and all `*Warp` exports). Package now only manages the L1 Claude TUI slice.
2 changes: 1 addition & 1 deletion docs/jsr-publishing.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ Manual single-package publish: push a `@bounded-systems/<pkg>@<version>` tag, or

| Package | Version | Auto-publish | Intra-scope deps |
| --- | --- | --- | --- |
| `@bounded-systems/prx-config` | 0.2.3 | ✅ ready | — |
| `@bounded-systems/prx-config` | 0.3.0 | ✅ ready | — |
2 changes: 1 addition & 1 deletion packages/prx-config/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bounded-systems/prx-config",
"version": "0.2.3",
"version": "0.3.0",
"exports": "./src/index.ts",
"imports": {
"zod": "npm:zod@^4.4.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/prx-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bounded-systems/prx-config",
"version": "0.2.3",
"version": "0.3.0",
"description": "TUI configuration schema parser/emitter for L1 Claude and L2 Warp tools",
"bounded": {
"tagline": "TUI configuration schema parser/emitter for L1 Claude and L2 Warp tools",
Expand Down
13 changes: 0 additions & 13 deletions packages/prx-config/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,3 @@ export {
parseFile,
emitToFile,
} from "./tui_l1_claude.ts";

export {
TuiL2WarpSchema,
WARP_KEYS,
type TuiL2WarpSubset,
type TuiL2Warp,
type ParseResult as ParseResultWarp,
parse as parseWarp,
emit as emitWarp,
driftReport as driftReportWarp,
parseFile as parseFileWarp,
emitToFile as emitToFileWarp,
} from "./tui_l2_warp.ts";
108 changes: 0 additions & 108 deletions packages/prx-config/src/tui_l2_warp.ts

This file was deleted.

8 changes: 8 additions & 0 deletions packages/prx/test/prx-config/tui_l1_claude.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,14 @@ describe("driftReport", () => {
test("clean input has empty issues", () => {
expect(driftReport({ tui: "default" })).toEqual({ ok: true, issues: [] });
});

test("type mismatch (number for string) produces type_mismatch issue", () => {
const report = driftReport({ language: 42 });
expect(report.ok).toBe(false);
const issue = report.issues.find((i) => i.path === "language");
expect(issue?.kind).toBe("type_mismatch");
expect(issue?.rawValue).toBe(42);
});
});

describe("emit", () => {
Expand Down
228 changes: 0 additions & 228 deletions packages/prx/test/prx-config/tui_l2_warp.test.ts

This file was deleted.