forked from openclaw/openclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.ts
More file actions
71 lines (63 loc) 路 2 KB
/
Copy pathversion.ts
File metadata and controls
71 lines (63 loc) 路 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { createRequire } from "node:module";
declare const __OPENCLAW_VERSION__: string | undefined;
const CORE_PACKAGE_NAME = "openclaw";
const PACKAGE_JSON_CANDIDATES = [
"../package.json",
"../../package.json",
"../../../package.json",
"./package.json",
] as const;
const BUILD_INFO_CANDIDATES = [
"../build-info.json",
"../../build-info.json",
"./build-info.json",
] as const;
function readVersionFromJsonCandidates(
moduleUrl: string,
candidates: readonly string[],
opts: { requirePackageName?: boolean } = {},
): string | null {
try {
const require = createRequire(moduleUrl);
for (const candidate of candidates) {
try {
const parsed = require(candidate) as { name?: string; version?: string };
const version = parsed.version?.trim();
if (!version) {
continue;
}
if (opts.requirePackageName && parsed.name !== CORE_PACKAGE_NAME) {
continue;
}
return version;
} catch {
// ignore missing or unreadable candidate
}
}
return null;
} catch {
return null;
}
}
export function readVersionFromPackageJsonForModuleUrl(moduleUrl: string): string | null {
return readVersionFromJsonCandidates(moduleUrl, PACKAGE_JSON_CANDIDATES, {
requirePackageName: true,
});
}
export function readVersionFromBuildInfoForModuleUrl(moduleUrl: string): string | null {
return readVersionFromJsonCandidates(moduleUrl, BUILD_INFO_CANDIDATES);
}
export function resolveVersionFromModuleUrl(moduleUrl: string): string | null {
return (
readVersionFromPackageJsonForModuleUrl(moduleUrl) ||
readVersionFromBuildInfoForModuleUrl(moduleUrl)
);
}
// Single source of truth for the current OpenClaw version.
// - Embedded/bundled builds: injected define or env var.
// - Dev/npm builds: package.json.
export const VERSION =
(typeof __OPENCLAW_VERSION__ === "string" && __OPENCLAW_VERSION__) ||
process.env.OPENCLAW_BUNDLED_VERSION ||
resolveVersionFromModuleUrl(import.meta.url) ||
"0.0.0";