Chore: add react native clean project

This commit is contained in:
Maria Zadnepryanets
2021-08-15 11:56:09 +00:00
parent 87a68ba9c5
commit 4fedb1928c
8 changed files with 153 additions and 27 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
echo "\x1b[35;01m""Start re-installing dependencies...""\x1b[39;49;00m"
echo "Remove node_modules..."
rm -rf node_modules
echo "Verify npm cache..."
npm cache verify
echo "Npm install..."
npm install
echo "Pods install..."
cd ios && pod install && cd ..
echo "\x1b[35;01m""Done!""\x1b[39;49;00m"