-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathversion.ts
32 lines (26 loc) · 1.09 KB
/
version.ts
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
// SPDX-License-Identifier: Apache-2.0
import {type Version} from './src/core/config/remote/types.js';
import {fileURLToPath} from 'node:url';
import path from 'node:path';
import {PathEx} from './src/business/utils/path-ex.js';
import fs from 'node:fs';
/**
* This file should only contain versions for dependencies and the function to get the Solo version.
*/
export const HELM_VERSION = 'v3.14.2';
export const SOLO_CHART_VERSION = '0.49.0';
export const HEDERA_PLATFORM_VERSION = 'v0.59.5';
export const MIRROR_NODE_VERSION = 'v0.126.0';
export const HEDERA_EXPLORER_VERSION = '24.12.1';
export const HEDERA_JSON_RPC_RELAY_VERSION = 'v0.66.0';
export const INGRESS_CONTROLLER_VERSION = '0.14.5';
export function getSoloVersion(): Version {
if (process.env.npm_package_version) {
return process.env.npm_package_version;
}
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const packageJsonPath = PathEx.resolve(__dirname, './package.json');
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8'));
return packageJson.version;
}