Skip to content

Commit

Permalink
fix(core): sort project file map and global files
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli committed Dec 5, 2023
1 parent 5e174fc commit 037f688
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/nx/src/native/workspace/workspace_files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ pub(super) fn get_files(
}
}

global_files.par_sort();
for (_, project_files) in project_file_map.iter_mut() {
project_files.par_sort();
}

let project_files_external = External::new(project_file_map.clone());
let global_files_external = External::new(global_files.clone());
let all_workspace_files = External::new(files);
Expand Down

0 comments on commit 037f688

Please sign in to comment.