@adhdev/daemon-core 1.0.58-rc.8 → 1.0.58-rc.9
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
|
@@ -942,10 +942,10 @@ function readInjected(value) {
|
|
|
942
942
|
}
|
|
943
943
|
function getDaemonBuildInfo() {
|
|
944
944
|
if (cached) return cached;
|
|
945
|
-
const commit = readInjected(true ? "
|
|
946
|
-
const commitShort = readInjected(true ? "
|
|
947
|
-
const version = readInjected(true ? "1.0.58-rc.
|
|
948
|
-
const builtAt = readInjected(true ? "2026-08-
|
|
945
|
+
const commit = readInjected(true ? "a761978209b917eac7231eeb6c7678a804e6526c" : void 0) ?? "unknown";
|
|
946
|
+
const commitShort = readInjected(true ? "a7619782" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
947
|
+
const version = readInjected(true ? "1.0.58-rc.9" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
948
|
+
const builtAt = readInjected(true ? "2026-08-24T16:24:30.625Z" : void 0);
|
|
949
949
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
950
950
|
return cached;
|
|
951
951
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -937,10 +937,10 @@ function readInjected(value) {
|
|
|
937
937
|
}
|
|
938
938
|
function getDaemonBuildInfo() {
|
|
939
939
|
if (cached) return cached;
|
|
940
|
-
const commit = readInjected(true ? "
|
|
941
|
-
const commitShort = readInjected(true ? "
|
|
942
|
-
const version = readInjected(true ? "1.0.58-rc.
|
|
943
|
-
const builtAt = readInjected(true ? "2026-08-
|
|
940
|
+
const commit = readInjected(true ? "a761978209b917eac7231eeb6c7678a804e6526c" : void 0) ?? "unknown";
|
|
941
|
+
const commitShort = readInjected(true ? "a7619782" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
942
|
+
const version = readInjected(true ? "1.0.58-rc.9" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
943
|
+
const builtAt = readInjected(true ? "2026-08-24T16:24:30.625Z" : void 0);
|
|
944
944
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
945
945
|
return cached;
|
|
946
946
|
}
|
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.9",
|
|
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",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"author": "vilmire",
|
|
58
58
|
"license": "AGPL-3.0-or-later",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@adhdev/mesh-shared": "1.0.58-rc.
|
|
61
|
-
"@adhdev/session-host-core": "1.0.58-rc.
|
|
60
|
+
"@adhdev/mesh-shared": "1.0.58-rc.9",
|
|
61
|
+
"@adhdev/session-host-core": "1.0.58-rc.9",
|
|
62
62
|
"@agentclientprotocol/sdk": "^0.16.1",
|
|
63
63
|
"ajv": "^8.20.0",
|
|
64
64
|
"ajv-formats": "^3.0.1",
|