From afcae364beb2cffa8e583b4ffd3a55b59336cb1b Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 19 Jul 2024 15:56:07 -0400 Subject: refactor: update to deno_config 0.25 (#24645) - Gets rid of WorkspaceMemberContext. It's now `Workspace` and `WorkspaceDirectory` - Uses the workspace cache in the lsp * https://github.com/denoland/deno_config/pull/95 * https://github.com/denoland/deno_config/pull/96 --- cli/graph_container.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/graph_container.rs') diff --git a/cli/graph_container.rs b/cli/graph_container.rs index d439f9360..cf913464f 100644 --- a/cli/graph_container.rs +++ b/cli/graph_container.rs @@ -98,7 +98,7 @@ impl MainModuleGraphContainer { &self, files: &[String], ) -> Result, AnyError> { - let excludes = self.cli_options.workspace.resolve_config_excludes()?; + let excludes = self.cli_options.workspace().resolve_config_excludes()?; Ok( files .iter() -- cgit v1.2.3