mirror of https://github.com/status-im/metro.git
Make a common hash of all the bundler information
Reviewed By: davidaurelio Differential Revision: D7196792 fbshipit-source-id: dc1e0b399d1d5ff9c0956facd69be4279cc4f5c3
This commit is contained in:
parent
b8d20a089c
commit
601f718dd6
|
@ -112,6 +112,7 @@ const {hasOwnProperty} = Object.prototype;
|
||||||
class Bundler {
|
class Bundler {
|
||||||
_opts: Options;
|
_opts: Options;
|
||||||
_cache: ?Cache<TransformedCode>;
|
_cache: ?Cache<TransformedCode>;
|
||||||
|
_baseHash: string;
|
||||||
_transformer: Transformer;
|
_transformer: Transformer;
|
||||||
_depGraphPromise: Promise<DependencyGraph>;
|
_depGraphPromise: Promise<DependencyGraph>;
|
||||||
_projectRoots: $ReadOnlyArray<string>;
|
_projectRoots: $ReadOnlyArray<string>;
|
||||||
|
@ -169,6 +170,16 @@ class Bundler {
|
||||||
watch: opts.watch,
|
watch: opts.watch,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this._baseHash = stableHash([
|
||||||
|
opts.assetExts,
|
||||||
|
opts.assetRegistryPath,
|
||||||
|
opts.asyncRequireModulePath,
|
||||||
|
opts.cacheVersion,
|
||||||
|
opts.dynamicDepsInPackages,
|
||||||
|
opts.projectRoots,
|
||||||
|
opts.transformModulePath,
|
||||||
|
]).toString('binary');
|
||||||
|
|
||||||
this._projectRoots = opts.projectRoots;
|
this._projectRoots = opts.projectRoots;
|
||||||
this._getTransformOptions = opts.getTransformOptions;
|
this._getTransformOptions = opts.getTransformOptions;
|
||||||
}
|
}
|
||||||
|
@ -278,11 +289,12 @@ class Bundler {
|
||||||
}
|
}
|
||||||
|
|
||||||
key = stableHash([
|
key = stableHash([
|
||||||
|
// This is the hash related to the global Bundler config.
|
||||||
|
this._baseHash,
|
||||||
|
|
||||||
|
// Path and code.
|
||||||
module.localPath,
|
module.localPath,
|
||||||
code,
|
code,
|
||||||
this._opts.assetExts,
|
|
||||||
this._opts.assetRegistryPath,
|
|
||||||
this._opts.cacheVersion,
|
|
||||||
|
|
||||||
// We cannot include "transformCodeOptions" because of "projectRoot".
|
// We cannot include "transformCodeOptions" because of "projectRoot".
|
||||||
assetDataPlugins,
|
assetDataPlugins,
|
||||||
|
|
Loading…
Reference in New Issue