Revert "fix(core): ensure file hasher initialized before usage (#10603)"

This reverts commit fd1194e61f26d8251fa521bcca0bb9879344be6f.
This commit is contained in:
Victor Savkin 2022-06-07 08:34:13 -04:00
parent f828da9d37
commit 48e4ece1ca
No known key found for this signature in database
GPG Key ID: 39178FEB7698B817

View File

@ -217,7 +217,6 @@ export class Hasher {
if (this.implicitDependencies) return this.implicitDependencies; if (this.implicitDependencies) return this.implicitDependencies;
performance.mark('hasher:implicit deps hash:start'); performance.mark('hasher:implicit deps hash:start');
await defaultFileHasher.ensureInitialized();
this.implicitDependencies = new Promise((res) => { this.implicitDependencies = new Promise((res) => {
const implicitDeps = Object.keys(this.nxJson.implicitDependencies ?? {}); const implicitDeps = Object.keys(this.nxJson.implicitDependencies ?? {});