From 3e9a63f8ce5224b66af8d00684d287978b5ff0d8 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Wed, 27 Nov 2024 20:51:17 +0000 Subject: [PATCH] fix --- Cargo.lock | 2 +- Cargo.toml | 2 +- cli/tools/check.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 85a7aa8777..ee6efadaa2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 6017cf8a29..1b22e1c23f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/cli/tools/check.rs b/cli/tools/check.rs index 04ccc80b09..657d8c1f2c 100644 --- a/cli/tools/check.rs +++ b/cli/tools/check.rs @@ -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(), }, ))