New Login Page (#1504)

This commit is contained in:
Luke Vella 2025-01-21 18:07:13 +00:00 committed by GitHub
parent 655f38203a
commit f5ab25ed1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
67 changed files with 1669 additions and 713 deletions

View file

@ -0,0 +1,8 @@
const { execSync } = require("child_process");
const packageJson = require("../package.json");
const version = packageJson.version;
const gitHash = execSync("git rev-parse --short HEAD").toString().trim();
const versionWithHash = `${version}-${gitHash}`;
console.log(versionWithHash);