@adhdev/daemon-core 1.0.58-rc.79 → 1.0.58-rc.80
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 +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1487,10 +1487,10 @@ function readInjected(value) {
|
|
|
1487
1487
|
}
|
|
1488
1488
|
function getDaemonBuildInfo() {
|
|
1489
1489
|
if (cached) return cached;
|
|
1490
|
-
const commit = readInjected(true ? "
|
|
1491
|
-
const commitShort = readInjected(true ? "
|
|
1492
|
-
const version = readInjected(true ? "1.0.58-rc.
|
|
1493
|
-
const builtAt = readInjected(true ? "2026-09-
|
|
1490
|
+
const commit = readInjected(true ? "04956a7d89056854c1f595e223307a82cf93b804" : void 0) ?? "unknown";
|
|
1491
|
+
const commitShort = readInjected(true ? "04956a7d" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
1492
|
+
const version = readInjected(true ? "1.0.58-rc.80" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
1493
|
+
const builtAt = readInjected(true ? "2026-09-05T13:36:33.961Z" : void 0);
|
|
1494
1494
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
1495
1495
|
return cached;
|
|
1496
1496
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1492,10 +1492,10 @@ function readInjected(value) {
|
|
|
1492
1492
|
}
|
|
1493
1493
|
function getDaemonBuildInfo() {
|
|
1494
1494
|
if (cached) return cached;
|
|
1495
|
-
const commit = readInjected(true ? "
|
|
1496
|
-
const commitShort = readInjected(true ? "
|
|
1497
|
-
const version = readInjected(true ? "1.0.58-rc.
|
|
1498
|
-
const builtAt = readInjected(true ? "2026-09-
|
|
1495
|
+
const commit = readInjected(true ? "04956a7d89056854c1f595e223307a82cf93b804" : void 0) ?? "unknown";
|
|
1496
|
+
const commitShort = readInjected(true ? "04956a7d" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
1497
|
+
const version = readInjected(true ? "1.0.58-rc.80" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
1498
|
+
const builtAt = readInjected(true ? "2026-09-05T13:36:33.961Z" : void 0);
|
|
1499
1499
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
1500
1500
|
return cached;
|
|
1501
1501
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhdev/daemon-core",
|
|
3
|
-
"version": "1.0.58-rc.
|
|
3
|
+
"version": "1.0.58-rc.80",
|
|
4
4
|
"description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"author": "vilmire",
|
|
76
76
|
"license": "AGPL-3.0-or-later",
|
|
77
77
|
"dependencies": {
|
|
78
|
-
"@adhdev/mesh-shared": "1.0.58-rc.
|
|
79
|
-
"@adhdev/session-host-core": "1.0.58-rc.
|
|
78
|
+
"@adhdev/mesh-shared": "1.0.58-rc.80",
|
|
79
|
+
"@adhdev/session-host-core": "1.0.58-rc.80",
|
|
80
80
|
"@agentclientprotocol/sdk": "^0.16.1",
|
|
81
81
|
"ajv": "^8.20.0",
|
|
82
82
|
"ajv-formats": "^3.0.1",
|