From 92ac7eada3c924cf7178e114c65f7f397fcb103c Mon Sep 17 00:00:00 2001 From: Jake Date: Sun, 19 Apr 2026 17:13:41 +0100 Subject: [PATCH] =?UTF-8?q?fix(tailwind):=20strip=20all=20backticks=20from?= =?UTF-8?q?=20ResizeHandles=20comments=20=E2=80=94=20Tailwind=20v4=20JIT?= =?UTF-8?q?=20parses=20backtick-wrapped=20text=20as=20CSS=20declarations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Follow-up to d1d344b. Tailwind's scanner still saw backtick-quoted fragments like `decorations: false` and `position: fixed` in the script comments as CSS property declarations, tripping on the next JS identifier (getCurrentWindow). Removing all backticks from the comment block sidesteps the entire scanner path. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/lib/components/ResizeHandles.svelte | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/components/ResizeHandles.svelte b/src/lib/components/ResizeHandles.svelte index 89b410a..3ce5183 100644 --- a/src/lib/components/ResizeHandles.svelte +++ b/src/lib/components/ResizeHandles.svelte @@ -1,6 +1,6 @@