replace-custom-components-file.sh 1.6 KB
#!/usr/bin/env bash

echo "Replace custom components!!!"
echo "Replace View.js..."
cp -f ./js/common/components/customComponents/View.js.bak ./node_modules/react-native/Libraries/Components/View/View.js
echo "Replace ViewPropTypes.js..."
cp -f ./js/common/components/customComponents/ViewPropTypes.js.bak ./node_modules/react-native/Libraries/Components/View/ViewPropTypes.js
echo "Replace ScrollView.js..."
cp -f ./js/common/components/customComponents/ScrollView.js.bak ./node_modules/react-native/Libraries/Components/ScrollView/ScrollView.js
echo "Replace ListView.js..."
cp -f ./js/common/components/customComponents/ListView.js.bak ./node_modules/react-native/Libraries/Lists/ListView/ListView.js
echo "Replace SectionList.js..."
cp -f ./js/common/components/customComponents/SectionList.js.bak ./node_modules/react-native/Libraries/Lists/SectionList.js
echo "Replace TouchableOpacity.js..."
cp -f ./js/common/components/customComponents/TouchableOpacity.js.bak ./node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js
echo "Replace TouchableHighlight.js..."
cp -f ./js/common/components/customComponents/TouchableHighlight.js.bak ./node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.js
echo "Replace VirtualizedSectionList.js..."
cp -f ./js/common/components/customComponents/VirtualizedSectionList.js.bak ./node_modules/react-native/Libraries/Lists/VirtualizedSectionList.js
echo "Removing Webview from ios ..."
cp -f ./js/common/components/customComponents/react-native-implementation.js.bak ./node_modules/react-native/Libraries/react-native/react-native-implementation.js
echo "\n"