fix: Add dev-server:url-detected to EventType (#808)

* fix: Add dev-server:url-detected to EventType

The dev-server-service emits this event when a dev server URL is
detected from output; the type was missing from the EventType union
and caused a TypeScript build error.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Update libs/types/src/event.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: gsxdsm <gsxdsm@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Patrick Patel
2026-02-24 22:25:38 -06:00
committed by GitHub
parent 09a4d3f15a
commit 6b97219f55

View File

@@ -48,8 +48,8 @@ export type EventType =
| 'worktree:init-completed'
| 'dev-server:started'
| 'dev-server:output'
| 'dev-server:stopped'
| 'dev-server:url-detected'
| 'dev-server:stopped'
| 'test-runner:started'
| 'test-runner:progress'
| 'test-runner:output'