Add versioning to footer

This commit is contained in:
2026-02-01 22:38:08 +01:00
parent c42401383b
commit c2d2e6c5a7
4 changed files with 40 additions and 3 deletions

View File

@ -1,10 +1,12 @@
{
"name": "admin.gaertan.art",
"version": "0.1.0",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "PORT=3001 NODE_OPTIONS='--max-old-space-size=4096' next dev",
"dev:version": "NEXT_PUBLIC_GIT_SHA=$(git rev-parse --short HEAD) NEXT_PUBLIC_DEPLOY_ENV=dev PORT=3001 NODE_OPTIONS='--max-old-space-size=4096' next dev",
"build": "next build",
"build:version": "NEXT_PUBLIC_GIT_SHA=$(git rev-parse --short HEAD) NEXT_PUBLIC_DEPLOY_ENV=prod bun run build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write"