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:
parent
b924e41ce8
commit
2e2743a955
|
|
@ -15,8 +15,11 @@ dist/
|
||||||
downloads/
|
downloads/
|
||||||
eggs/
|
eggs/
|
||||||
.eggs/
|
.eggs/
|
||||||
lib/
|
# Python lib directories (not frontend/lib)
|
||||||
lib64/
|
/lib/
|
||||||
|
/lib64/
|
||||||
|
backend/lib/
|
||||||
|
backend/lib64/
|
||||||
parts/
|
parts/
|
||||||
sdist/
|
sdist/
|
||||||
var/
|
var/
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
import { type ClassValue, clsx } from "clsx";
|
||||||
|
import { twMerge } from "tailwind-merge";
|
||||||
|
|
||||||
|
export function cn(...inputs: ClassValue[]) {
|
||||||
|
return twMerge(clsx(inputs));
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue