Skip to content

Commit

Permalink
fix(core): sort all workspace files after combining (#19806)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli authored Oct 24, 2023
1 parent d077efa commit f5eeb0a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,7 @@ function buildAllWorkspaceFiles(
): FileData[] {
performance.mark('get-all-workspace-files:start');
let fileData: FileData[] = Object.values(projectFileMap).flat();

fileData = fileData.concat(globalFiles);
fileData = fileData.concat(globalFiles).sort();
performance.mark('get-all-workspace-files:end');
performance.measure(
'get-all-workspace-files',
Expand Down

0 comments on commit f5eeb0a

Please sign in to comment.