* Upgrade to React Native 0.52.2 * Bump app version to 1.7.0 * Update fastlane * Upgrade mattermost redux * feedback review
18 lines
438 B
JavaScript
18 lines
438 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
const path = require('path');
|
|
const blacklist = require('metro/src/blacklist');
|
|
|
|
const config = {
|
|
getBlacklistRE() {
|
|
return blacklist([/react-native\/local-cli\/core\/__fixtures__.*/]);
|
|
},
|
|
getProjectRoots() {
|
|
return [
|
|
path.resolve(__dirname, '.')
|
|
];
|
|
}
|
|
};
|
|
|
|
module.exports = config;
|