Skip to content

Commit

Permalink
feat(core): remove git file hasher implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli committed Apr 24, 2023
1 parent cc0d912 commit 3430e53
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 416 deletions.
3 changes: 0 additions & 3 deletions packages/nx/src/hasher/file-hasher.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { GitBasedFileHasher } from './git-based-file-hasher';
import { NodeBasedFileHasher } from './node-based-file-hasher';
import { FileHasherBase } from './file-hasher-base';
import { NativeFileHasher } from './native-file-hasher';
Expand All @@ -11,8 +10,6 @@ function createFileHasher(): FileHasherBase {
switch (getHashingImplementation()) {
case HasherImplementation.Native:
return new NativeFileHasher();
case HasherImplementation.Git:
return new GitBasedFileHasher();
case HasherImplementation.Node:
return new NodeBasedFileHasher();
}
Expand Down
47 changes: 0 additions & 47 deletions packages/nx/src/hasher/git-based-file-hasher.ts

This file was deleted.

199 changes: 0 additions & 199 deletions packages/nx/src/hasher/git-hasher.spec.ts

This file was deleted.

Loading

0 comments on commit 3430e53

Please sign in to comment.