@adhdev/daemon-core 1.0.54-rc.3 → 1.0.54-rc.4
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
|
@@ -1385,10 +1385,10 @@ function readInjected(value) {
|
|
|
1385
1385
|
}
|
|
1386
1386
|
function getDaemonBuildInfo() {
|
|
1387
1387
|
if (cached) return cached;
|
|
1388
|
-
const commit = readInjected(true ? "
|
|
1389
|
-
const commitShort = readInjected(true ? "
|
|
1390
|
-
const version = readInjected(true ? "1.0.54-rc.
|
|
1391
|
-
const builtAt = readInjected(true ? "2026-08-17T07:
|
|
1388
|
+
const commit = readInjected(true ? "968e887537fe755b9b980d794a82e5e5d4b92956" : void 0) ?? "unknown";
|
|
1389
|
+
const commitShort = readInjected(true ? "968e8875" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
1390
|
+
const version = readInjected(true ? "1.0.54-rc.4" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
1391
|
+
const builtAt = readInjected(true ? "2026-08-17T07:58:40.189Z" : void 0);
|
|
1392
1392
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
1393
1393
|
return cached;
|
|
1394
1394
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1380,10 +1380,10 @@ function readInjected(value) {
|
|
|
1380
1380
|
}
|
|
1381
1381
|
function getDaemonBuildInfo() {
|
|
1382
1382
|
if (cached) return cached;
|
|
1383
|
-
const commit = readInjected(true ? "
|
|
1384
|
-
const commitShort = readInjected(true ? "
|
|
1385
|
-
const version = readInjected(true ? "1.0.54-rc.
|
|
1386
|
-
const builtAt = readInjected(true ? "2026-08-17T07:
|
|
1383
|
+
const commit = readInjected(true ? "968e887537fe755b9b980d794a82e5e5d4b92956" : void 0) ?? "unknown";
|
|
1384
|
+
const commitShort = readInjected(true ? "968e8875" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
1385
|
+
const version = readInjected(true ? "1.0.54-rc.4" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
1386
|
+
const builtAt = readInjected(true ? "2026-08-17T07:58:40.189Z" : void 0);
|
|
1387
1387
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
1388
1388
|
return cached;
|
|
1389
1389
|
}
|
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.4",
|
|
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.4",
|
|
54
|
+
"@adhdev/session-host-core": "1.0.54-rc.4",
|
|
55
55
|
"@agentclientprotocol/sdk": "^0.16.1",
|
|
56
56
|
"ajv": "^8.20.0",
|
|
57
57
|
"ajv-formats": "^3.0.1",
|