2015-02-20 04:10:52 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// Don't forget to everything listed here to `testConfig.json`
|
|
|
|
// modulePathIgnorePatterns.
|
|
|
|
var sharedBlacklist = [
|
2015-03-12 00:44:49 +00:00
|
|
|
__dirname,
|
2015-02-20 04:10:52 +00:00
|
|
|
'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',
|
2015-03-12 00:44:49 +00:00
|
|
|
'node_modules/react-tools/src/event/EventPropagators.js'
|
2015-02-20 04:10:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
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, '\\$&');
|
|
|
|
}
|
|
|
|
|
2015-03-12 00:44:49 +00:00
|
|
|
function blacklist(isWeb, additionalBlacklist) {
|
2015-02-20 04:10:52 +00:00
|
|
|
return new RegExp('(' +
|
2015-03-12 00:44:49 +00:00
|
|
|
(additionalBlacklist || []).concat(sharedBlacklist)
|
2015-02-20 04:10:52 +00:00
|
|
|
.concat(isWeb ? webBlacklist : iosBlacklist)
|
|
|
|
.map(escapeRegExp)
|
|
|
|
.join('|') +
|
|
|
|
')$'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = blacklist;
|