mirror of https://github.com/status-im/metro.git
Organize a bit metro-cache
Reviewed By: jeanlauliac Differential Revision: D7350100 fbshipit-source-id: bc5ce7ca4f264f523a18be84e390c6a19ac74374
This commit is contained in:
parent
e42b126485
commit
debe429690
|
@ -11,7 +11,8 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const Cache = require('./Cache');
|
const Cache = require('./Cache');
|
||||||
const FileStore = require('./FileStore');
|
const FileStore = require('./stores/FileStore');
|
||||||
|
const PersistedMapStore = require('./stores/PersistedMapStore');
|
||||||
|
|
||||||
const stableHash = require('./stableHash');
|
const stableHash = require('./stableHash');
|
||||||
|
|
||||||
|
@ -19,4 +20,6 @@ export type {CacheStore} from './types.flow';
|
||||||
|
|
||||||
module.exports.Cache = Cache;
|
module.exports.Cache = Cache;
|
||||||
module.exports.FileStore = FileStore;
|
module.exports.FileStore = FileStore;
|
||||||
|
module.exports.PersistedMapStore = PersistedMapStore;
|
||||||
|
|
||||||
module.exports.stableHash = stableHash;
|
module.exports.stableHash = stableHash;
|
||||||
|
|
Loading…
Reference in New Issue