summaryrefslogtreecommitdiff
path: root/cli/args/mod.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-03-27 14:25:39 -0400
committerGitHub <noreply@github.com>2024-03-27 14:25:39 -0400
commit68fecc6de4b2e6556adeb2730798bf42017c4be6 (patch)
treeed7b7644221e4a53f30df3e33d41e7994e10b169 /cli/args/mod.rs
parent0e4d1cb5f9a3645f6da480b2b8540568fa69d675 (diff)
fix: less aggressive vendor folder ignoring (#23100)
This is slightly breaking as some users want the `vendor` folder excluded and may not have that specified in their deno.json. Closes #22833
Diffstat (limited to 'cli/args/mod.rs')
-rw-r--r--cli/args/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/args/mod.rs b/cli/args/mod.rs
index de889c654..330b10d0f 100644
--- a/cli/args/mod.rs
+++ b/cli/args/mod.rs
@@ -1974,7 +1974,6 @@ mod test {
let mut files = FileCollector::new(|_| true)
.ignore_git_folder()
.ignore_node_modules()
- .ignore_vendor_folder()
.collect_file_patterns(resolved_files)
.unwrap();