From a0b440a4f285a3b49eb9ccf4d1bc4e10450e9b20 Mon Sep 17 00:00:00 2001 From: Liam Hammett Date: Tue, 19 Aug 2025 00:42:26 +0200 Subject: [PATCH] Ignore node_modules --- src/Finder/FilesFinder.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Finder/FilesFinder.php b/src/Finder/FilesFinder.php index 4dc77f499..401a78784 100644 --- a/src/Finder/FilesFinder.php +++ b/src/Finder/FilesFinder.php @@ -25,6 +25,7 @@ public static function find(array $sources): array ->files() ->in($paths) // not our code + ->notPath('node_modules') ->notPath('vendor') ->notPath('var/cache') ->sortByName();