commandkit 0.1.11-dev.20250422144359 → 0.1.11-dev.20250423160629

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.js CHANGED
@@ -206,10 +206,12 @@ function makeContextAwareFunction(env, fn, finalizer) {
206
206
  }
207
207
  } finally {
208
208
  if (typeof finalizer === "function") {
209
- try {
210
- await finalizer(...args);
211
- } catch {
212
- }
209
+ setImmediate(async () => {
210
+ try {
211
+ await finalizer(...args);
212
+ } catch {
213
+ }
214
+ });
213
215
  }
214
216
  }
215
217
  });
@@ -5442,7 +5444,7 @@ var init_version = __esm({
5442
5444
  "use strict";
5443
5445
  init_cjs_shims();
5444
5446
  version = /* @__MACRO__ $version */
5445
- "0.1.11-dev.20250422144359";
5447
+ "0.1.11-dev.20250423160629";
5446
5448
  }
5447
5449
  });
5448
5450