From ffddd8556685344e1289b9a212cfed687e212a7b Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Fri, 6 Sep 2024 15:03:17 -0400 Subject: [PATCH] Add /vendor/ to default exclusion list of FileCompiler --- wire/core/FileCompiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wire/core/FileCompiler.php b/wire/core/FileCompiler.php index f5880539..636b101b 100644 --- a/wire/core/FileCompiler.php +++ b/wire/core/FileCompiler.php @@ -187,6 +187,7 @@ class FileCompiler extends Wire { } $this->addExclusion($config->paths->wire); + $this->addExclusion($config->paths->root . 'vendor/'); $rootPath = $config->paths->root; $targetPath = $this->cachePath; @@ -1202,4 +1203,3 @@ class FileCompiler extends Wire { } } -