@adhdev/daemon-core 1.0.54-rc.8 → 1.0.54-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
|
@@ -919,10 +919,10 @@ function readInjected(value) {
|
|
|
919
919
|
}
|
|
920
920
|
function getDaemonBuildInfo() {
|
|
921
921
|
if (cached) return cached;
|
|
922
|
-
const commit = readInjected(true ? "
|
|
923
|
-
const commitShort = readInjected(true ? "
|
|
924
|
-
const version = readInjected(true ? "1.0.54-rc.
|
|
925
|
-
const builtAt = readInjected(true ? "2026-08-17T18:
|
|
922
|
+
const commit = readInjected(true ? "e148f3583830ef8aa587d337c444b1444362069b" : void 0) ?? "unknown";
|
|
923
|
+
const commitShort = readInjected(true ? "e148f358" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
924
|
+
const version = readInjected(true ? "1.0.54-rc.9" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
925
|
+
const builtAt = readInjected(true ? "2026-08-17T18:29:46.107Z" : void 0);
|
|
926
926
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
927
927
|
return cached;
|
|
928
928
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -914,10 +914,10 @@ function readInjected(value) {
|
|
|
914
914
|
}
|
|
915
915
|
function getDaemonBuildInfo() {
|
|
916
916
|
if (cached) return cached;
|
|
917
|
-
const commit = readInjected(true ? "
|
|
918
|
-
const commitShort = readInjected(true ? "
|
|
919
|
-
const version = readInjected(true ? "1.0.54-rc.
|
|
920
|
-
const builtAt = readInjected(true ? "2026-08-17T18:
|
|
917
|
+
const commit = readInjected(true ? "e148f3583830ef8aa587d337c444b1444362069b" : void 0) ?? "unknown";
|
|
918
|
+
const commitShort = readInjected(true ? "e148f358" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
919
|
+
const version = readInjected(true ? "1.0.54-rc.9" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
920
|
+
const builtAt = readInjected(true ? "2026-08-17T18:29:46.107Z" : void 0);
|
|
921
921
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
922
922
|
return cached;
|
|
923
923
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhdev/daemon-core",
|
|
3
|
-
"version": "1.0.54-rc.
|
|
3
|
+
"version": "1.0.54-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",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"author": "vilmire",
|
|
51
51
|
"license": "AGPL-3.0-or-later",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@adhdev/mesh-shared": "1.0.54-rc.
|
|
54
|
-
"@adhdev/session-host-core": "1.0.54-rc.
|
|
53
|
+
"@adhdev/mesh-shared": "1.0.54-rc.9",
|
|
54
|
+
"@adhdev/session-host-core": "1.0.54-rc.9",
|
|
55
55
|
"@agentclientprotocol/sdk": "^0.16.1",
|
|
56
56
|
"ajv": "^8.20.0",
|
|
57
57
|
"ajv-formats": "^3.0.1",
|