Update workflow and tooling versions (#910)

This commit is contained in:
Micah
2024-09-03 15:36:36 -07:00
committed by GitHub
parent 73097075d4
commit c9ce996626
6 changed files with 18 additions and 22 deletions

View File

@@ -136,7 +136,7 @@ impl JobThreadContext {
// created all at once.
let mut current_path = path.as_path();
let affected_ids = loop {
let ids = tree.get_ids_at_path(&current_path);
let ids = tree.get_ids_at_path(current_path);
log::trace!("Path {} affects IDs {:?}", current_path.display(), ids);

View File

@@ -67,7 +67,7 @@ impl SourcemapCommand {
let vfs = Vfs::new_default();
vfs.set_watch_enabled(self.watch);
let session = ServeSession::new(vfs, &project_path)?;
let session = ServeSession::new(vfs, project_path)?;
let mut cursor = session.message_queue().cursor();
let filter = if self.include_non_scripts {