Files
clawdbot/src/version.ts
2025-12-19 19:21:26 +01:00

23 lines
684 B
TypeScript

import { createRequire } from "node:module";
declare const __CLAWDIS_VERSION__: string | undefined;
function readVersionFromPackageJson(): string | null {
try {
const require = createRequire(import.meta.url);
const pkg = require("../package.json") as { version?: string };
return pkg.version ?? null;
} catch {
return null;
}
}
// Single source of truth for the current clawdis version.
// - Embedded/bundled builds: injected define or env var.
// - Dev/npm builds: package.json.
export const VERSION =
(typeof __CLAWDIS_VERSION__ === "string" && __CLAWDIS_VERSION__) ||
process.env.CLAWDIS_BUNDLED_VERSION ||
readVersionFromPackageJson() ||
"0.0.0";