@tscircuit/cli 0.1.1183 → 0.1.1184

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
@@ -98409,7 +98409,7 @@ var import_perfect_cli = __toESM2(require_dist2(), 1);
98409
98409
  // lib/getVersion.ts
98410
98410
  import { createRequire as createRequire2 } from "node:module";
98411
98411
  // package.json
98412
- var version = "0.1.1182";
98412
+ var version = "0.1.1183";
98413
98413
  var package_default = {
98414
98414
  name: "@tscircuit/cli",
98415
98415
  version,
@@ -109052,6 +109052,7 @@ import path38 from "node:path";
109052
109052
  // lib/shared/thread-worker-pool.ts
109053
109053
  import { Worker } from "node:worker_threads";
109054
109054
  var DEFAULT_WORKER_JOB_TIMEOUT_MS = 3 * 60 * 1000;
109055
+ var DEFAULT_HEARTBEAT_INTERVAL_MS = 30 * 1000;
109055
109056
 
109056
109057
  class ThreadWorkerPool {
109057
109058
  workers = [];
@@ -109097,10 +109098,7 @@ class ThreadWorkerPool {
109097
109098
  if (!this.options.onLog || this.heartbeatIntervalId) {
109098
109099
  return;
109099
109100
  }
109100
- if (process.env.DEBUG !== "1") {
109101
- return;
109102
- }
109103
- const heartbeatIntervalMs = this.options.heartbeatIntervalMs ?? 5000;
109101
+ const heartbeatIntervalMs = this.options.heartbeatIntervalMs ?? DEFAULT_HEARTBEAT_INTERVAL_MS;
109104
109102
  if (heartbeatIntervalMs <= 0) {
109105
109103
  return;
109106
109104
  }
package/dist/lib/index.js CHANGED
@@ -60678,7 +60678,7 @@ var getNodeHandler = (winterSpec, { port, middleware = [] }) => {
60678
60678
  }));
60679
60679
  };
60680
60680
  // package.json
60681
- var version = "0.1.1182";
60681
+ var version = "0.1.1183";
60682
60682
  var package_default = {
60683
60683
  name: "@tscircuit/cli",
60684
60684
  version,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.1.1183",
3
+ "version": "0.1.1184",
4
4
  "main": "dist/cli/main.js",
5
5
  "exports": {
6
6
  ".": "./dist/cli/main.js",