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
(cherry picked from commit f5eeb0a)
  • Loading branch information
Cammisuli authored and FrozenPandaz committed Oct 25, 2023
1 parent f02b1ec commit 09e4289
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 09e4289

Please sign in to comment.