mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 16:56:31 +00:00
Jakub Sokołowski
34c30e0cb9
Warnings like this: jest-haste-map: Haste module naming collision: StatusIm-Mobile The following files share their name; please adjust your hasteImpl: * <rootDir>/mobile/js_files/package.json * <rootDir>/package.json Signed-off-by: Jakub Sokołowski <jakub@status.im>
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
const blacklist = require('metro').createBlacklist;
|
|
|
|
module.exports = {
|
|
getBlacklistRE: function() {
|
|
return blacklist([/(desktop|mobile)\/js_files\/.*/]);
|
|
}
|
|
};
|