@mutmutco/cli 2.39.0 → 2.40.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.
Files changed (3) hide show
  1. package/dist/main.cjs +2119 -1063
  2. package/dist/saga.cjs +4 -5
  3. package/package.json +1 -1
package/dist/saga.cjs CHANGED
@@ -4341,12 +4341,11 @@ function resolveSession(d) {
4341
4341
  }
4342
4342
 
4343
4343
  // src/clean-exit.ts
4344
+ var UNDICI_GLOBAL_DISPATCHER_SYMBOL = Object.getOwnPropertySymbols(globalThis).find(
4345
+ (s) => s.description === "undici.globalDispatcher.1" || s.description?.startsWith("undici.globalDispatcher.")
4346
+ ) ?? /* @__PURE__ */ Symbol.for("undici.globalDispatcher.1");
4344
4347
  function globalDispatcher() {
4345
- const g = globalThis;
4346
- const sym = Object.getOwnPropertySymbols(g).find(
4347
- (s) => s.description === "undici.globalDispatcher.1" || s.description?.startsWith("undici.globalDispatcher.")
4348
- );
4349
- return sym ? g[sym] : void 0;
4348
+ return globalThis[UNDICI_GLOBAL_DISPATCHER_SYMBOL];
4350
4349
  }
4351
4350
  function destroyHttpPool() {
4352
4351
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/cli",
3
- "version": "2.39.0",
3
+ "version": "2.40.1",
4
4
  "description": "MMI Future CLI — delivers the org rules (whole-file), plus saga and KB access. The cross-IDE engine the plugin's SessionStart hook drives.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",