Skip to content

Commit

Permalink
fix(core): sort workspace file set hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli committed Oct 23, 2023
1 parent cc8d8e8 commit c6f04c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/hasher/task-hasher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ class TaskHasherImpl {
parts.push(f.hash);
});
}
const value = hashArray(parts);
const value = hashArray(parts.sort());
res({
value,
details: { [mapKey]: value },
Expand Down

0 comments on commit c6f04c8

Please sign in to comment.