From 496f7c254c5b94a5a5df6e948d53759bd5955309 Mon Sep 17 00:00:00 2001 From: kirillgroshkov Date: Thu, 20 Jun 2024 22:30:49 +0200 Subject: [PATCH] fix: exclude `__exclude` in build-copy --- src/cmd/build-copy.command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/build-copy.command.ts b/src/cmd/build-copy.command.ts index af9dc58..b09e7bf 100644 --- a/src/cmd/build-copy.command.ts +++ b/src/cmd/build-copy.command.ts @@ -6,7 +6,7 @@ export function buildCopyCommand(): void { '**', '!**/*.ts', '!**/__snapshots__', - '**/__exclude', + '!**/__exclude', '!test', '!**/*.test.js', ]