From 562946dfec812fc85913739f5c78471cc4896bf0 Mon Sep 17 00:00:00 2001 From: Alex Kanunnikov Date: Fri, 25 Oct 2024 10:02:01 +0800 Subject: [PATCH] chore: ignore transformed ember addons --- src/utils/path-matcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/path-matcher.ts b/src/utils/path-matcher.ts index 05965ab08..e3ad607b0 100644 --- a/src/utils/path-matcher.ts +++ b/src/utils/path-matcher.ts @@ -41,7 +41,7 @@ export class ClassicPathMatcher { serializer: ['/serializers/'], util: ['/utils/'], }; - ignores = ['/tmp/', '/dist/', '/.git/']; + ignores = ['/tmp/', '/dist/', '/.git/', '/.embroider/']; setIgnores(ignores: string[]) { this.ignores = ignores; }