feat(unstable): rename deno_modules to vendor (#20065)

Renames the unstable `deno_modules` directory and corresponding settings
to `vendor` after feedback. Also causes the vendoring of the
`node_modules` directory which can be disabled via
`--node-modules-dir=false` or `"nodeModulesDir": false`.
This commit is contained in:
David Sherret 2023-08-06 21:56:56 -04:00 committed by GitHub
parent 7b5bc87f29
commit b9b0386948
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 127 additions and 115 deletions

View file

@ -571,7 +571,7 @@ fn collect_coverages(
})
.ignore_git_folder()
.ignore_node_modules()
.ignore_deno_modules()
.ignore_vendor_folder()
.add_ignore_paths(&files.ignore)
.collect_files(&files.include)?;