mirror of
https://github.com/status-im/metro.git
synced 2025-01-21 16:39:43 +00:00
Fix blacklist
Reviewed By: @amasad Differential Revision: D2432196
This commit is contained in:
parent
86a099d00a
commit
50dbbe5af2
10
blacklist.js
10
blacklist.js
@ -13,16 +13,21 @@ var path = require('path');
|
||||
// Don't forget to everything listed here to `testConfig.json`
|
||||
// modulePathIgnorePatterns.
|
||||
var sharedBlacklist = [
|
||||
'website',
|
||||
'node_modules/react-tools/src/React.js',
|
||||
'node_modules/react-tools/src/renderers/shared/event/EventPropagators.js',
|
||||
'node_modules/react-tools/src/renderers/shared/event/eventPlugins/ResponderEventPlugin.js',
|
||||
'node_modules/react-tools/src/shared/vendor/core/ExecutionEnvironment.js',
|
||||
];
|
||||
|
||||
// Raw unescaped patterns in case you need to use wildcards
|
||||
var sharedBlacklistWildcards = [
|
||||
'website\/node_modules\/.*',
|
||||
];
|
||||
|
||||
var platformBlacklists = {
|
||||
web: [
|
||||
'.ios.js'
|
||||
'.ios.js',
|
||||
'.android.js',
|
||||
],
|
||||
ios: [
|
||||
'.web.js',
|
||||
@ -45,6 +50,7 @@ function blacklist(platform, additionalBlacklist) {
|
||||
(additionalBlacklist || []).concat(sharedBlacklist)
|
||||
.concat(platformBlacklists[platform] || [])
|
||||
.map(escapeRegExp)
|
||||
.concat(sharedBlacklistWildcards)
|
||||
.join('|') +
|
||||
')$'
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user