Make bundle building function async

Reviewed By: jeanlauliac

Differential Revision: D4993758

fbshipit-source-id: b466e0d8d494914357f38eac1a0ef3c2ec7d4edd
This commit is contained in:
David Aurelio
2017-05-03 13:19:01 -07:00
committed by Facebook Github Bot
parent 7eb005b4df
commit 382e633f78
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ import type {
type BuildFn = (
entryPoints: Iterable<string>,
options: BuildOptions,
callback: Callback<{modules: Iterable<Module>, entryModules: Iterable<Module>}>,
callback: Callback<GraphResult>,
) => void;
type BuildOptions = {|