Remove unused packagerInstance option and rename it to server

Reviewed By: rafeca

Differential Revision: D6435505

fbshipit-source-id: e1912f20be517be49648b0eeb52c53f66e3fae55
This commit is contained in:
Peter van der Zee
2018-01-12 06:31:27 -08:00
committed by Facebook Github Bot
parent af6450c660
commit bbbc18c4ee
3 changed files with 44 additions and 58 deletions
+2 -2
View File
@@ -15,8 +15,8 @@ const outputUnbundle = require('metro/src/shared/output/unbundle');
/**
* Builds the bundle starting to look for dependencies at the given entry path.
*/
function unbundle(argv, config, args, packagerInstance) {
return bundleWithOutput(argv, config, args, outputUnbundle, packagerInstance);
function unbundle(argv, config, args) {
return bundleWithOutput(argv, config, args, outputUnbundle);
}
module.exports = {