mirror of https://github.com/status-im/metro.git
Remove unneeded await in sync method
Reviewed By: cpojer Differential Revision: D5851184 fbshipit-source-id: 4a6f5cbd9d1237843c349b5944bd17767f84f625
This commit is contained in:
parent
77f6ac080d
commit
539885386a
|
@ -330,7 +330,7 @@ class DeltaTransformer extends EventEmitter {
|
||||||
const dependencyPairsForModule = dependencyPairs.get(module.path) || [];
|
const dependencyPairsForModule = dependencyPairs.get(module.path) || [];
|
||||||
|
|
||||||
const wrapped = this._bundleOptions.wrapModules
|
const wrapped = this._bundleOptions.wrapModules
|
||||||
? await this._resolver.wrapModule({
|
? this._resolver.wrapModule({
|
||||||
module,
|
module,
|
||||||
getModuleId: this._getModuleId,
|
getModuleId: this._getModuleId,
|
||||||
dependencyPairs: dependencyPairsForModule,
|
dependencyPairs: dependencyPairsForModule,
|
||||||
|
|
Loading…
Reference in New Issue