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/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
# Python lib directories (not frontend/lib)
|
||||
/lib/
|
||||
/lib64/
|
||||
backend/lib/
|
||||
backend/lib64/
|
||||
parts/
|
||||
sdist/
|
||||
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