import * as child from "node:child_process"; export const SHORT_HASH = child .execSync("git rev-parse --short HEAD") .toString() .trim(); export const LONG_HASH = child.execSync("git rev-parse HEAD").toString().trim();