@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.mjs CHANGED
@@ -438,9 +438,9 @@ function readInjected(value) {
438
438
  function getDaemonBuildInfo() {
439
439
  if (cached) return cached;
440
440
  const commit = readInjected(true ? "03f4ab200c0f108b7b438e0b53a22f066ed80027" : void 0) ?? "unknown";
441
- const commitShort = readInjected(true ? "03f4ab2" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
442
- const version = readInjected(true ? "1.0.17" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
443
- const builtAt = readInjected(true ? "2026-07-21T06:37:43.402Z" : void 0);
441
+ const commitShort = readInjected(true ? "03f4ab20" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
442
+ const version = readInjected(true ? "1.0.18-rc.1" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
443
+ const builtAt = readInjected(true ? "2026-07-21T07:14:01.112Z" : void 0);
444
444
  cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
445
445
  return cached;
446
446
  }