Skip to content

Commit

Permalink
chore(core): turn on native task hasher by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli committed Nov 16, 2023
1 parent 856fbcb commit f24c14a
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 @@ -130,7 +130,7 @@ export class InProcessTaskHasher implements TaskHasher {
static version = '3.0';
private taskHasher: TaskHasherImpl;

private useNativeTaskHasher = process.env.NX_NATIVE_TASK_HASHER === 'true';
private useNativeTaskHasher = process.env.NX_NATIVE_TASK_HASHER !== 'false';

constructor(
private readonly projectFileMap: ProjectFileMap,
Expand Down

0 comments on commit f24c14a

Please sign in to comment.