mirror of
https://github.com/status-im/react-native.git
synced 2025-02-03 21:24:31 +00:00
642c13e3e3
- Fixed sticky section headers in ListView | Nick Lockwood - [ReactNative] AppState cleanup, remove Subscribable, add in OSS examples | Eric Vicenti - [react-packager] package.json cleanup (seperate packager into it's own package) | Amjad Masad - [ReactNative] Move PushNotificationIOS to oss | Tadeu Zagallo - [ReactNative] Fix shake gesture after RedBox is dismissed | Alex Kotliarskyi - [catlyst|madman] fix prop type warning | Jiajie Zhu - [ReactNative] Remove Subscribable from TextInput | Eric Vicenti - Unforked ExceptionsManager, AlertManager and AppState | Nick Lockwood - [ReactNative|MAdMan] Notification Subscribable | Eric Vicenti - [ReactNative] OSS AsyncStorage with example | Spencer Ahrens
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*/
|
|
'use strict';
|
|
|
|
// Don't forget to everything listed here to `testConfig.json`
|
|
// modulePathIgnorePatterns.
|
|
var sharedBlacklist = [
|
|
__dirname,
|
|
'node_modules/parse/node_modules/xmlhttprequest/lib/XMLHttpRequest.js',
|
|
'node_modules/react-tools/src/utils/ImmutableObject.js',
|
|
'node_modules/react-tools/src/core/ReactInstanceHandles.js',
|
|
'node_modules/react-tools/src/event/EventPropagators.js'
|
|
];
|
|
|
|
var webBlacklist = [
|
|
'.ios.js'
|
|
];
|
|
|
|
var iosBlacklist = [
|
|
'node_modules/react-tools/src/browser/ui/React.js',
|
|
'node_modules/react-tools/src/browser/eventPlugins/ResponderEventPlugin.js',
|
|
// 'node_modules/react-tools/src/vendor/core/ExecutionEnvironment.js',
|
|
'.web.js',
|
|
'.android.js',
|
|
];
|
|
|
|
function escapeRegExp(str) {
|
|
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&');
|
|
}
|
|
|
|
function blacklist(isWeb, additionalBlacklist) {
|
|
return new RegExp('(' +
|
|
(additionalBlacklist || []).concat(sharedBlacklist)
|
|
.concat(isWeb ? webBlacklist : iosBlacklist)
|
|
.map(escapeRegExp)
|
|
.join('|') +
|
|
')$'
|
|
);
|
|
}
|
|
|
|
module.exports = blacklist;
|