diff --git a/local-cli/bundle/buildBundle.js b/local-cli/bundle/buildBundle.js index dce3984ed0ff2c..afbab9ec8a3ede 100644 --- a/local-cli/bundle/buildBundle.js +++ b/local-cli/bundle/buildBundle.js @@ -101,7 +101,7 @@ async function buildBundle( getPolyfills: config.getPolyfills, getTransformOptions: config.getTransformOptions, globalTransformCache: null, - hasteImpl: config.hasteImpl, + hasteImplModulePath: config.hasteImplModulePath, maxWorkers: args.maxWorkers, platforms: defaultPlatforms.concat(platforms), postMinifyProcess: config.postMinifyProcess, diff --git a/local-cli/dependencies/dependencies.js b/local-cli/dependencies/dependencies.js index 7bb480dd26cac5..3558f576cffb4b 100644 --- a/local-cli/dependencies/dependencies.js +++ b/local-cli/dependencies/dependencies.js @@ -34,7 +34,7 @@ function dependencies(argv, config, args, packagerInstance) { dynamicDepsInPackages: config.dynamicDepsInPackages, getPolyfills: config.getPolyfills, getTransformOptions: config.getTransformOptions, - hasteImpl: config.hasteImpl, + hasteImplModulePath: config.hasteImplModulePath, postMinifyProcess: config.postMinifyProcess, transformModulePath: transformModulePath, extraNodeModules: config.extraNodeModules, diff --git a/local-cli/server/runServer.js b/local-cli/server/runServer.js index bb3fc3c7fcfdc9..1288d769b73102 100644 --- a/local-cli/server/runServer.js +++ b/local-cli/server/runServer.js @@ -184,7 +184,7 @@ function getPackagerServer(args, config, reporter) { getPolyfills: config.getPolyfills, getTransformOptions: config.getTransformOptions, globalTransformCache: null, - hasteImpl: config.hasteImpl, + hasteImplModulePath: config.hasteImplModulePath, maxWorkers: args.maxWorkers, platforms: defaultPlatforms.concat(args.platforms), polyfillModuleNames: config.getPolyfillModuleNames(),