From 98e0da92ac7a15925dd45c472a23f733d4ffc546 Mon Sep 17 00:00:00 2001 From: Anirban Kar Date: Fri, 6 Dec 2024 23:30:51 +0530 Subject: [PATCH] added lock file ignore --- app/components/chat/GitCloneButton.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/chat/GitCloneButton.tsx b/app/components/chat/GitCloneButton.tsx index 6f573a4..ddecdc8 100644 --- a/app/components/chat/GitCloneButton.tsx +++ b/app/components/chat/GitCloneButton.tsx @@ -24,6 +24,7 @@ const IGNORE_PATTERNS = [ '**/yarn-debug.log*', '**/yarn-error.log*', '**/*lock.json', + '**/*lock.yaml', ]; const ig = ignore().add(IGNORE_PATTERNS);