@adhdev/daemon-core 1.0.17 → 1.0.18-rc.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.
package/dist/index.js CHANGED
@@ -443,9 +443,9 @@ function readInjected(value) {
443
443
  function getDaemonBuildInfo() {
444
444
  if (cached) return cached;
445
445
  const commit = readInjected(true ? "03f4ab200c0f108b7b438e0b53a22f066ed80027" : void 0) ?? "unknown";
446
- const commitShort = readInjected(true ? "03f4ab2" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
447
- const version = readInjected(true ? "1.0.17" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
448
- const builtAt = readInjected(true ? "2026-07-21T06:37:43.402Z" : void 0);
446
+ const commitShort = readInjected(true ? "03f4ab20" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
447
+ const version = readInjected(true ? "1.0.18-rc.1" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
448
+ const builtAt = readInjected(true ? "2026-07-21T07:14:01.112Z" : void 0);
449
449
  cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
450
450
  return cached;
451
451
  }