mirror of https://github.com/status-im/metro.git
Avoid hardcoding platform on blacklist
Reviewed By: davidaurelio Differential Revision: D3042906 fb-gh-sync-id: 4a424ef1012d75d06c830b284806aefd1556ff74 shipit-source-id: 4a424ef1012d75d06c830b284806aefd1556ff74
This commit is contained in:
parent
0fe44bd1ab
commit
c46d6cc239
|
@ -17,8 +17,8 @@ module.exports = {
|
|||
return this._getRoots();
|
||||
},
|
||||
|
||||
getBlacklistRE() {
|
||||
return blacklist('');
|
||||
getBlacklistRE(platform) {
|
||||
return blacklist(platform);
|
||||
},
|
||||
|
||||
_getRoots() {
|
||||
|
|
Loading…
Reference in New Issue