#!/bin/bash -e
# clean.sh
#
# Clean the project

# Clean JS dependencies
# rm -rf .npmrc
rm -rf node_modules
# rm -rf ios/.xcode.env.local
rm -rf ios/Pods
rm -rf ios/orchardgo.xcworkspace
rm -rf ios/orchardgo/generated
rm -rf android/app/generated
rm -rf android/.cxx

# Clean Ruby dependencies
rm -rf .bundle
rm -rf vendor
rm -rf android/vendor
rm -rf ios/vendor

rm -rf generated
rm -rf src/generated
