Remove unneeded await in sync method

Reviewed By: cpojer

Differential Revision: D5851184

fbshipit-source-id: 4a6f5cbd9d1237843c349b5944bd17767f84f625
This commit is contained in:
Rafael Oleza 2017-09-18 03:37:44 -07:00 committed by Facebook Github Bot
parent 77f6ac080d
commit 539885386a
1 changed files with 1 additions and 1 deletions

View File

@ -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,