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 ddaeb76992
commit 2abe26f5ca
No known key found for this signature in database
2 changed files with 2 additions and 4 deletions

2
package-lock.json generated
View file

@ -1007,7 +1007,7 @@
},
"node_modules/@quartz-community/types": {
"version": "0.2.1",
"resolved": "git+ssh://git@github.com/quartz-community/types.git#a945040888d4e1b97f81cffa094877d74a5f4d0e",
"resolved": "git+ssh://git@github.com/quartz-community/types.git#c7df97d0def545b73fe433b7ef9d8ffb6694cf57",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.4",

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(" ");
}