@tscircuit/cli 0.1.1112 → 0.1.1113

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/cli/main.js CHANGED
@@ -97682,7 +97682,7 @@ var import_perfect_cli = __toESM2(require_dist2(), 1);
97682
97682
  // lib/getVersion.ts
97683
97683
  import { createRequire as createRequire2 } from "node:module";
97684
97684
  // package.json
97685
- var version = "0.1.1111";
97685
+ var version = "0.1.1112";
97686
97686
  var package_default = {
97687
97687
  name: "@tscircuit/cli",
97688
97688
  version,
@@ -108225,6 +108225,10 @@ class ThreadWorkerPool {
108225
108225
  if (!timedOutJob) {
108226
108226
  return;
108227
108227
  }
108228
+ const jobDescription = this.describeJob(timedOutJob.job);
108229
+ this.options.onLog?.([
108230
+ `[worker-pool] timeout: task=${jobDescription} timeout_ms=${timeoutMs}; replacing worker`
108231
+ ]);
108228
108232
  const timeoutError = new Error(`Worker job timed out after ${timeoutMs}ms`);
108229
108233
  timedOutJob.reject(timeoutError);
108230
108234
  this.replaceWorker(threadWorker);
package/dist/lib/index.js CHANGED
@@ -60445,7 +60445,7 @@ var getNodeHandler = (winterSpec, { port, middleware = [] }) => {
60445
60445
  }));
60446
60446
  };
60447
60447
  // package.json
60448
- var version = "0.1.1111";
60448
+ var version = "0.1.1112";
60449
60449
  var package_default = {
60450
60450
  name: "@tscircuit/cli",
60451
60451
  version,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.1.1112",
3
+ "version": "0.1.1113",
4
4
  "main": "dist/cli/main.js",
5
5
  "exports": {
6
6
  ".": "./dist/cli/main.js",