Organize a bit metro-cache

Reviewed By: jeanlauliac

Differential Revision: D7350100

fbshipit-source-id: bc5ce7ca4f264f523a18be84e390c6a19ac74374
This commit is contained in:
Miguel Jimenez Esun 2018-03-21 10:32:50 -07:00 committed by Facebook Github Bot
parent e42b126485
commit debe429690
6 changed files with 4 additions and 1 deletions

View File

@ -11,7 +11,8 @@
'use strict';
const Cache = require('./Cache');
const FileStore = require('./FileStore');
const FileStore = require('./stores/FileStore');
const PersistedMapStore = require('./stores/PersistedMapStore');
const stableHash = require('./stableHash');
@ -19,4 +20,6 @@ export type {CacheStore} from './types.flow';
module.exports.Cache = Cache;
module.exports.FileStore = FileStore;
module.exports.PersistedMapStore = PersistedMapStore;
module.exports.stableHash = stableHash;