0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05:00
This commit is contained in:
Nayeem Rahman 2024-11-27 20:51:17 +00:00
parent 6e3ceddf17
commit 3e9a63f8ce
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -1430,7 +1430,7 @@ dependencies = [
[[package]]
name = "deno_config"
version = "0.39.2"
source = "git+https://github.com/denoland/deno_config.git?rev=1a5c07c05085f0cb922bdf0a899589b1c720ea60#1a5c07c05085f0cb922bdf0a899589b1c720ea60"
source = "git+https://github.com/denoland/deno_config.git?rev=485e7a71f1057437d2a2c4adddbfbe348a812667#485e7a71f1057437d2a2c4adddbfbe348a812667"
dependencies = [
"anyhow",
"deno_package_json",

View file

@ -51,7 +51,7 @@ deno_core = { version = "0.323.0" }
deno_bench_util = { version = "0.173.0", path = "./bench_util" }
# TODO(nayeemrmn): Use proper version when https://github.com/denoland/deno_config/pull/143 lands!
deno_config = { git = "https://github.com/denoland/deno_config.git", rev = "1a5c07c05085f0cb922bdf0a899589b1c720ea60", features = ["workspace", "sync"] }
deno_config = { git = "https://github.com/denoland/deno_config.git", rev = "485e7a71f1057437d2a2c4adddbfbe348a812667", features = ["workspace", "sync"] }
deno_lockfile = "=0.23.1"
deno_media_type = { version = "0.2.0", features = ["module_specifier"] }
deno_npm = "=0.25.4"

View file

@ -87,7 +87,7 @@ pub async fn check(
cli_options.start_dir.clone(),
FilePatterns {
base: cli_options.initial_cwd().to_path_buf(),
include: None,
include: Some(Default::default()),
exclude: Default::default(),
},
))