From 1ee3676784f8b310e50975fbd9380fd8599dd9a4 Mon Sep 17 00:00:00 2001 From: Mark Tolmacs Date: Fri, 11 Apr 2025 15:39:31 +0200 Subject: [PATCH] Move visal debug to @excalidraw/util --- excalidraw-app/components/DebugCanvas.tsx | 2 +- packages/{excalidraw => utils/src}/visualdebug.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/{excalidraw => utils/src}/visualdebug.ts (100%) diff --git a/excalidraw-app/components/DebugCanvas.tsx b/excalidraw-app/components/DebugCanvas.tsx index e83a62647d..48a619e42d 100644 --- a/excalidraw-app/components/DebugCanvas.tsx +++ b/excalidraw-app/components/DebugCanvas.tsx @@ -18,7 +18,7 @@ import { } from "@excalidraw/math"; import { isCurve } from "@excalidraw/math/curve"; -import type { DebugElement } from "@excalidraw/excalidraw/visualdebug"; +import type { DebugElement } from "@excalidraw/utils/visualdebug"; import type { Curve } from "@excalidraw/math"; 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