Flow 0.59 xplat/js deploy

Reviewed By: avikchaudhuri

Differential Revision: D6300238

fbshipit-source-id: a6839fa2a9bbc50c3832a3f5b1cac2a6d2bd96b7
This commit is contained in:
Caleb Meredith 2017-11-10 21:03:52 -08:00 committed by Facebook Github Bot
parent 698d36a474
commit 42a547551f

View File

@ -885,10 +885,7 @@ class Server {
return (this._nextBundleBuildID++).toString(36); return (this._nextBundleBuildID++).toString(36);
} }
static DEFAULT_BUNDLE_OPTIONS; static DEFAULT_BUNDLE_OPTIONS = {
}
Server.DEFAULT_BUNDLE_OPTIONS = {
assetPlugins: [], assetPlugins: [],
dev: true, dev: true,
entryModuleOnly: false, entryModuleOnly: false,
@ -904,7 +901,8 @@ Server.DEFAULT_BUNDLE_OPTIONS = {
runModule: true, runModule: true,
sourceMapUrl: null, sourceMapUrl: null,
unbundle: false, unbundle: false,
}; };
}
function* zip<X, Y>(xs: Iterable<X>, ys: Iterable<Y>): Iterable<[X, Y]> { function* zip<X, Y>(xs: Iterable<X>, ys: Iterable<Y>): Iterable<[X, Y]> {
//$FlowIssue #9324959 //$FlowIssue #9324959