* Builds the bundle starting to look for dependencies at the given entry path.
(argv, config, args, output, packagerInstance)
| 16 | * Builds the bundle starting to look for dependencies at the given entry path. |
| 17 | */ |
| 18 | function bundleWithOutput(argv, config, args, output, packagerInstance) { |
| 19 | if (!output) { |
| 20 | output = outputBundle; |
| 21 | } |
| 22 | return buildBundle(args, config, output, packagerInstance); |
| 23 | } |
| 24 | |
| 25 | function bundle(argv, config, args, packagerInstance) { |
| 26 | return bundleWithOutput(argv, config, args, undefined, packagerInstance); |
no test coverage detected
searching dependent graphs…