deps: update @quartz-community/types and @quartz-community/utils

Also fix code formatting with prettier.
This commit is contained in:
saberzero1 2026-03-09 03:04:02 +01:00
parent 2fa3bbb34d
commit 29da63c8e7
No known key found for this signature in database
2 changed files with 943 additions and 6 deletions

945
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,3 @@
export function classNames(
...classes: (string | undefined | null | false)[]
): string {
export function classNames(...classes: (string | undefined | null | false)[]): string {
return classes.filter(Boolean).join(" ");
}