fix: drop explicit ui:install step

This commit is contained in:
Peter Steinberger
2026-01-09 07:02:42 +00:00
parent 95c2ccbd7b
commit c46bab35df
14 changed files with 15 additions and 53 deletions

View File

@@ -157,7 +157,7 @@ export function handleControlUiHttpRequest(
res.statusCode = 503;
res.setHeader("Content-Type", "text/plain; charset=utf-8");
res.end(
"Control UI assets not found. Build them with `bun run ui:build` (or run `bun run ui:dev` during development).",
"Control UI assets not found. Build them with `pnpm ui:build` (auto-installs UI deps), or run `pnpm ui:dev` during development.",
);
return true;
}