packager: GlobalTransformCache: reduce asynchronicity for non-cached bundles

Reviewed By: davidaurelio

Differential Revision: D4745595

fbshipit-source-id: 3126fdcc11dd1c8085316457ead0cabae633d0db
This commit is contained in:
Jean Lauliac
2017-03-21 05:54:08 -07:00
committed by Facebook Github Bot
parent 4cbb64521a
commit 439cb76a00
2 changed files with 5 additions and 4 deletions

View File

@@ -303,7 +303,7 @@ class Module {
callback: (error: ?Error, result: ?TransformedCode) => void,
) {
const {_globalCache} = this;
if (_globalCache == null) {
if (_globalCache == null || !_globalCache.shouldFetch(cacheProps)) {
this._transformCodeForCallback(cacheProps, callback);
return;
}