@adhdev/daemon-core 1.0.18-rc.18 → 1.0.18-rc.19
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
|
@@ -790,10 +790,10 @@ function readInjected(value) {
|
|
|
790
790
|
}
|
|
791
791
|
function getDaemonBuildInfo() {
|
|
792
792
|
if (cached) return cached;
|
|
793
|
-
const commit = readInjected(true ? "
|
|
794
|
-
const commitShort = readInjected(true ? "
|
|
795
|
-
const version = readInjected(true ? "1.0.18-rc.
|
|
796
|
-
const builtAt = readInjected(true ? "2026-07-
|
|
793
|
+
const commit = readInjected(true ? "957753ce64d49cf4222cb2675d7d919871d3f009" : void 0) ?? "unknown";
|
|
794
|
+
const commitShort = readInjected(true ? "957753ce" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
795
|
+
const version = readInjected(true ? "1.0.18-rc.19" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
796
|
+
const builtAt = readInjected(true ? "2026-07-23T07:07:10.469Z" : void 0);
|
|
797
797
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
798
798
|
return cached;
|
|
799
799
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -785,10 +785,10 @@ function readInjected(value) {
|
|
|
785
785
|
}
|
|
786
786
|
function getDaemonBuildInfo() {
|
|
787
787
|
if (cached) return cached;
|
|
788
|
-
const commit = readInjected(true ? "
|
|
789
|
-
const commitShort = readInjected(true ? "
|
|
790
|
-
const version = readInjected(true ? "1.0.18-rc.
|
|
791
|
-
const builtAt = readInjected(true ? "2026-07-
|
|
788
|
+
const commit = readInjected(true ? "957753ce64d49cf4222cb2675d7d919871d3f009" : void 0) ?? "unknown";
|
|
789
|
+
const commitShort = readInjected(true ? "957753ce" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
790
|
+
const version = readInjected(true ? "1.0.18-rc.19" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
791
|
+
const builtAt = readInjected(true ? "2026-07-23T07:07:10.469Z" : void 0);
|
|
792
792
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
793
793
|
return cached;
|
|
794
794
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhdev/daemon-core",
|
|
3
|
-
"version": "1.0.18-rc.
|
|
3
|
+
"version": "1.0.18-rc.19",
|
|
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",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"author": "vilmire",
|
|
48
48
|
"license": "AGPL-3.0-or-later",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@adhdev/mesh-shared": "1.0.18-rc.
|
|
51
|
-
"@adhdev/session-host-core": "1.0.18-rc.
|
|
50
|
+
"@adhdev/mesh-shared": "1.0.18-rc.19",
|
|
51
|
+
"@adhdev/session-host-core": "1.0.18-rc.19",
|
|
52
52
|
"@agentclientprotocol/sdk": "^0.16.1",
|
|
53
53
|
"ajv": "^8.20.0",
|
|
54
54
|
"ajv-formats": "^3.0.1",
|