@mantiq/events 0.5.5 → 0.5.7

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mantiq/events",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
4
4
  "description": "Event dispatcher, listeners, observers, and broadcasting for MantiqJS",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -33,7 +33,7 @@ export class EventServiceProvider extends ServiceProvider {
33
33
  try {
34
34
  config = c.make(ConfigRepository).get<BroadcastConfig>('broadcasting', DEFAULT_BROADCAST_CONFIG)
35
35
  } catch {
36
- // ConfigRepository not yet registered — use defaults
36
+ // ConfigRepository not yet registered — use defaults (safe during early bootstrap)
37
37
  }
38
38
  return new BroadcastManager(config)
39
39
  })