mirror of https://github.com/status-im/metro.git
RN: Options to Preload Bundles on Startup
Reviewed By: achen1 Differential Revision: D4809513 fbshipit-source-id: a9a4196b72b241faf7c788e26b9e6880cecebb3e
This commit is contained in:
parent
87c7e781a2
commit
5ded44cdc1
|
@ -518,7 +518,7 @@ class Server {
|
|||
});
|
||||
}
|
||||
|
||||
_useCachedOrUpdateOrCreateBundle(options: BundleOptions): Promise<Bundle> {
|
||||
useCachedOrUpdateOrCreateBundle(options: BundleOptions): Promise<Bundle> {
|
||||
const optionsJson = this.optionsHash(options);
|
||||
const bundleFromScratch = () => {
|
||||
const building = this.buildBundle(options);
|
||||
|
@ -683,7 +683,7 @@ class Server {
|
|||
};
|
||||
|
||||
debug('Getting bundle for request');
|
||||
const building = this._useCachedOrUpdateOrCreateBundle(options);
|
||||
const building = this.useCachedOrUpdateOrCreateBundle(options);
|
||||
building.then(
|
||||
p => {
|
||||
if (requestType === 'bundle') {
|
||||
|
@ -784,7 +784,7 @@ class Server {
|
|||
|
||||
_sourceMapForURL(reqUrl: string): Promise<SourceMap> {
|
||||
const options = this._getOptionsFromUrl(reqUrl);
|
||||
const building = this._useCachedOrUpdateOrCreateBundle(options);
|
||||
const building = this.useCachedOrUpdateOrCreateBundle(options);
|
||||
return building.then(p => p.getSourceMap({
|
||||
minify: options.minify,
|
||||
dev: options.dev,
|
||||
|
|
Loading…
Reference in New Issue