chore: remove web-ui workspace

This commit is contained in:
Mario Zechner
2026-05-20 02:21:11 +02:00
parent 559a71683d
commit b141e1fa24
107 changed files with 83 additions and 18461 deletions

View File

@@ -2,6 +2,10 @@
## [Unreleased]
### Changed
- Removed the package-level development watch script now that the root TypeScript check validates strip-only-compatible sources.
## [0.75.3] - 2026-05-18
## [0.75.2] - 2026-05-18

View File

@@ -7,7 +7,6 @@
"scripts": {
"clean": "shx rm -rf dist",
"build": "tsgo -p tsconfig.build.json",
"dev": "tsgo -p tsconfig.build.json --watch --preserveWatchOutput",
"test": "node --test --import tsx test/*.test.ts",
"prepublishOnly": "npm run clean && npm run build"
},

View File

@@ -365,7 +365,7 @@ describe("CombinedAutocompleteProvider", () => {
dirs: ["packages/coding-agent/examples/extensions/plan-mode"],
files: {
"packages/coding-agent/examples/extensions/plan-mode/README.md": "readme",
"packages/web-ui/docs/plan.md": "plan",
"packages/tui/docs/plan.md": "plan",
},
};
setupFolder(normalBaseDir, structure);
@@ -385,7 +385,7 @@ describe("CombinedAutocompleteProvider", () => {
assert.ok(
normalize(normalResult).includes("plan-mode/ :: packages/coding-agent/examples/extensions/plan-mode"),
);
assert.ok(normalize(normalResult).includes("plan.md :: packages/web-ui/docs/plan.md"));
assert.ok(normalize(normalResult).includes("plan.md :: packages/tui/docs/plan.md"));
});
test("continues autocomplete inside quoted @ paths", async () => {