@bluelibs/runner 4.5.7 → 4.5.8

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/dist/index.d.ts CHANGED
@@ -1692,11 +1692,7 @@ declare function buildTestFacade(deps: {
1692
1692
  declare const globals: {
1693
1693
  events: {
1694
1694
  readonly ready: IEvent<{
1695
- root: IResource<any, any, any, any>;
1696
- }>;
1697
- readonly unhandledError: IEvent<{
1698
- kind: "task" | "middleware" | "resourceInit" | "hook" | "process" | "run";
1699
- error: any;
1695
+ root: IResource<any, any, any, any, any, any, any>;
1700
1696
  }>;
1701
1697
  };
1702
1698
  resources: {
package/dist/index.mjs CHANGED
@@ -974,7 +974,7 @@ var globalTags = {
974
974
  };
975
975
 
976
976
  // src/globals/globalEvents.ts
977
- var systemTag = globalTags.system;
977
+ globalTags.system;
978
978
  var globalEvents = {
979
979
  // Minimal core events retained if any (custom events can still be defined by users)
980
980
  /**
@@ -986,17 +986,6 @@ var globalEvents = {
986
986
  title: "System Ready",
987
987
  description: "Emitted when the system has completed boot and is ready for listeners to start work.This runs right before returning value for run()."
988
988
  }
989
- }),
990
- /**
991
- * Central error boundary event for any thrown error across the runner.
992
- */
993
- unhandledError: defineEvent({
994
- id: "globals.events.unhandledError",
995
- meta: {
996
- title: "Unhandled Error",
997
- description: "Central error boundary event for any thrown error across the runner."
998
- },
999
- tags: [systemTag, globalTags.excludeFromGlobalHooks]
1000
989
  })
1001
990
  };
1002
991
  var globalEventsArray = [globalEvents.ready];