diff --git a/packages/nx/src/hasher/hasher.ts b/packages/nx/src/hasher/hasher.ts index 788e39952afc0..6081e4a5794d9 100644 --- a/packages/nx/src/hasher/hasher.ts +++ b/packages/nx/src/hasher/hasher.ts @@ -153,6 +153,10 @@ export class Hasher { return this.hashing.hashArray(values); } + hashFile(path: string): string { + return this.hashing.hashFile(path); + } + private async runtimeInputsHash(): Promise { if (this.runtimeInputs) return this.runtimeInputs;