@wrongstack/webui 0.107.2 → 0.119.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -164,7 +164,7 @@ import {
164
164
  collabPauseMiddleware,
165
165
  collabInjectMiddleware,
166
166
  estimateRequestTokensCalibrated,
167
- EventBus as EventBus2,
167
+ EventBus,
168
168
  HybridCompactor as HybridCompactor2,
169
169
  ProviderRegistry,
170
170
  TOKENS as TOKENS2,
@@ -1618,6 +1618,7 @@ function openBrowser(url, platform = process.platform) {
1618
1618
  try {
1619
1619
  import("@wrongstack/tools").then(({ getProcessRegistry }) => {
1620
1620
  getProcessRegistry().register({
1621
+ // biome-ignore lint/style/noNonNullAssertion: pid always present after spawn
1621
1622
  pid: child.pid,
1622
1623
  name: "browser",
1623
1624
  command: `${command} ${args.join(" ")}`,
@@ -2078,7 +2079,7 @@ async function startWebUI(opts = {}) {
2078
2079
  toolRegistry.register(relatedMemoryTool(memoryStore));
2079
2080
  }
2080
2081
  console.log("[WebUI] Tool registry loaded:", toolRegistry.list().length, "tools");
2081
- const events = new EventBus2();
2082
+ const events = new EventBus();
2082
2083
  events.setLogger(logger);
2083
2084
  const sessionStore = new DefaultSessionStore2({ dir: wpaths.projectSessions });
2084
2085
  sessionStore.prune(DEFAULT_SESSION_PRUNE_DAYS).then((count) => {