From fa59126c29fa7654a4e939b85abfbdf1d49af88c Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Mon, 9 Mar 2026 03:04:03 +0100 Subject: [PATCH] deps: update @quartz-community/types and @quartz-community/utils Also fix code formatting with prettier. --- package-lock.json | 2 +- src/util/lang.ts | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index da346d0..e6edf2b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -682,7 +682,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", diff --git a/src/util/lang.ts b/src/util/lang.ts index 6f22341..5610168 100644 --- a/src/util/lang.ts +++ b/src/util/lang.ts @@ -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(" "); }