chore: Add frontend lock file and utils

- Add package-lock.json for reproducible builds
- Add lib/utils.ts with cn() helper
- Fix .gitignore to not exclude frontend/lib

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-01-29 17:06:33 +00:00
parent b924e41ce8
commit 2e2743a955
3 changed files with 3274 additions and 2 deletions

7
.gitignore vendored
View File

@ -15,8 +15,11 @@ dist/
downloads/
eggs/
.eggs/
lib/
lib64/
# Python lib directories (not frontend/lib)
/lib/
/lib64/
backend/lib/
backend/lib64/
parts/
sdist/
var/

6
frontend/lib/utils.ts Normal file
View File

@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}

3263
frontend/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff