From 45c0c0ddf06fa0f3d0fbd4c992d6b4337f393e10 Mon Sep 17 00:00:00 2001 From: Cory Rylan Date: Thu, 26 Mar 2026 14:22:54 -0500 Subject: [PATCH] fix(cli): remove unused export Signed-off-by: Cory Rylan --- projects/cli/src/internal/elements/errors.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/projects/cli/src/internal/elements/errors.ts b/projects/cli/src/internal/elements/errors.ts index 8c928f1..d7d5cd2 100644 --- a/projects/cli/src/internal/elements/errors.ts +++ b/projects/cli/src/internal/elements/errors.ts @@ -5,11 +5,3 @@ export class ErrElementNotFound extends Error { this.tagName = tagName; } } - -export class ErrModuleNotFound extends Error { - path: string; - constructor(path: string) { - super(`module '${path}' not found`); - this.path = path; - } -}