summaryrefslogtreecommitdiff
path: root/cli/graph_container.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-07-19 15:56:07 -0400
committerGitHub <noreply@github.com>2024-07-19 15:56:07 -0400
commitafcae364beb2cffa8e583b4ffd3a55b59336cb1b (patch)
treef98ba0e5af179b9172f130b63fb35cd77c122932 /cli/graph_container.rs
parenta4c76add565b9674ef6880de88013948c61a1ce5 (diff)
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
Diffstat (limited to 'cli/graph_container.rs')
-rw-r--r--cli/graph_container.rs2
1 files changed, 1 insertions, 1 deletions
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<Vec<ModuleSpecifier>, AnyError> {
- let excludes = self.cli_options.workspace.resolve_config_excludes()?;
+ let excludes = self.cli_options.workspace().resolve_config_excludes()?;
Ok(
files
.iter()