fix(autogpt_builder): Unignore lib/ and add lib/utils.ts

This commit is contained in:
Reinier van der Leer 2024-07-04 17:40:59 -06:00
parent f359ed0983
commit b7a90ce768
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -32,7 +32,6 @@ dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/

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))
}