From c1415004005d74961d43f7bc80cd0a3f2e1ab0cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rk=20Tolm=C3=A1cs?= Date: Wed, 18 Jun 2025 14:45:51 +0200 Subject: [PATCH] chore: Relocate visualdebug so ESLint doesn't complain (#9668) --- excalidraw-app/components/DebugCanvas.tsx | 4 ++-- packages/{excalidraw => utils/src}/visualdebug.ts | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename packages/{excalidraw => utils/src}/visualdebug.ts (100%) diff --git a/excalidraw-app/components/DebugCanvas.tsx b/excalidraw-app/components/DebugCanvas.tsx index e83a62647..385b9b140 100644 --- a/excalidraw-app/components/DebugCanvas.tsx +++ b/excalidraw-app/components/DebugCanvas.tsx @@ -18,10 +18,10 @@ import { } from "@excalidraw/math"; import { isCurve } from "@excalidraw/math/curve"; -import type { DebugElement } from "@excalidraw/excalidraw/visualdebug"; - import type { Curve } from "@excalidraw/math"; +import type { DebugElement } from "@excalidraw/utils/visualdebug"; + import { STORAGE_KEYS } from "../app_constants"; const renderLine = ( diff --git a/packages/excalidraw/visualdebug.ts b/packages/utils/src/visualdebug.ts similarity index 100% rename from packages/excalidraw/visualdebug.ts rename to packages/utils/src/visualdebug.ts