From 72708301d3ea330ee0f71485ca7f046b6ebff47e Mon Sep 17 00:00:00 2001 From: userquin Date: Fri, 23 Aug 2024 16:49:32 +0200 Subject: [PATCH] fix: change glob ignores server pattern --- src/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index b525abf..977fe8f 100644 --- a/src/config.ts +++ b/src/config.ts @@ -176,10 +176,10 @@ function buildGlobPatterns(globPatterns?: string[]) { function buildGlobIgnores(globIgnores?: string[]) { if (globIgnores) { if (!globIgnores.some(g => g.startsWith('server/'))) - globIgnores.push('server/*.*') + globIgnores.push('server/**') return globIgnores } - return ['server/*.*'] + return ['server/**'] }