Fix server build: Remove Electron dependency from events/index exports (#987)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: thomasnordquist <7721625+thomasnordquist@users.noreply.github.com>
This commit is contained in:
Copilot
2025-12-23 21:46:40 +01:00
committed by GitHub
parent 6e355decbf
commit de367e755f
2 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
export * from './Events'
export * from './EventsV2'
export * from './EventSystem/EventDispatcher'
export * from './EventSystem/EventBus'
// EventBus exports removed - this file contains Electron-specific imports
// which should not be loaded in server/browser mode
// Electron code should import directly from './EventSystem/EventBus'
// export * from './EventSystem/EventBus'
export * from './EventSystem/EventBusInterface'