web/version: use workspace version-info package

This commit is contained in:
wukko 2024-08-04 22:01:36 +06:00
parent bfbf653463
commit 6267d1d58f
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2
3 changed files with 7 additions and 75 deletions

View file

@ -76,6 +76,9 @@ importers:
'@fontsource/ibm-plex-mono':
specifier: ^5.0.13
version: 5.0.13
'@imput/version-info':
specifier: workspace:^
version: link:../packages/version-info
'@tabler/icons-svelte':
specifier: 3.6.0
version: 3.6.0(svelte@4.2.18)

View file

@ -44,6 +44,7 @@
"dependencies": {
"@fontsource-variable/noto-sans-mono": "^5.0.20",
"@fontsource/ibm-plex-mono": "^5.0.13",
"@imput/version-info": "workspace:^",
"@tabler/icons-svelte": "3.6.0",
"sveltekit-i18n": "^2.4.2",
"ts-deepmerge": "^7.0.0"

View file

@ -1,77 +1,5 @@
import { json } from '@sveltejs/kit';
import { readFile } from 'node:fs/promises';
import { join, parse } from 'node:path';
import { existsSync } from 'node:fs';
import { cwd } from 'node:process';
const findFile = (file: string) => {
let dir = cwd();
while (dir !== parse(dir).root) {
if (existsSync(join(dir, file))) {
return dir;
}
dir = join(dir, '../');
}
}
const root = findFile('.git');
const pack = findFile('package.json');
if (!root) {
throw 'no git repository root found';
} else if (!pack) {
throw 'no package root found';
}
const readGit = (filename: string) => readFile(join(root, filename), 'utf8');
const getCommit = async () => {
return (await readGit('.git/logs/HEAD'))
?.split('\n')
?.filter(String)
?.pop()
?.split(' ')[1];
}
const getBranch = async () => {
if (process.env.CF_PAGES_BRANCH) {
return process.env.CF_PAGES_BRANCH;
}
return (await readGit('.git/HEAD'))
?.replace(/^ref: refs\/heads\//, '')
?.trim();
}
const getRemote = async () => {
let remote = (await readGit('.git/config'))
?.split('\n')
?.find(line => line.includes('url = '))
?.split('url = ')[1];
if (remote?.startsWith('git@')) {
remote = remote.split(':')[1];
} else if (remote?.startsWith('http')) {
remote = new URL(remote).pathname.substring(1);
}
remote = remote?.replace(/\.git$/, '');
if (!remote) {
throw 'could not parse remote';
}
return remote;
}
const getVersion = async () => {
const { version } = JSON.parse(
await readFile(join(pack, 'package.json'), 'utf8')
);
return version;
}
import { json } from "@sveltejs/kit";
import { getCommit, getBranch, getRemote, getVersion } from "@imput/version-info";
export async function GET() {
return json({
@ -82,4 +10,4 @@ export async function GET() {
});
}
export const prerender = true;
export const prerender = true;