refactor: remove WorkspaceDirectoryProvider (#30467)
Some checks are pending
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions

This commit is contained in:
David Sherret 2025-08-21 11:27:12 -04:00 committed by GitHub
parent b7061b0f64
commit 5f9a64bcaf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 287 additions and 298 deletions

View file

@ -824,7 +824,8 @@ fn print_available_tasks(
if let Some(config) = config.deno_json.as_ref() {
let is_root = !is_cwd_root_dir
&& config.folder_url == *workspace_dir.workspace.root_dir().as_ref();
&& config.folder_url
== *workspace_dir.workspace.root_dir_url().as_ref();
for (name, definition) in &config.tasks {
if !seen_task_names.insert(name) {
@ -841,7 +842,8 @@ fn print_available_tasks(
if let Some(config) = config.package_json.as_ref() {
let is_root = !is_cwd_root_dir
&& config.folder_url == *workspace_dir.workspace.root_dir().as_ref();
&& config.folder_url
== *workspace_dir.workspace.root_dir_url().as_ref();
for (name, script) in &config.tasks {
if !seen_task_names.insert(name) {
continue; // already seen