diff --git a/build b/build deleted file mode 100755 index cb8d694..0000000 --- a/build +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -if [ -z "$NVM_DIR" ] -then - NVM_DIR="~/.nvm" -fi - -. $NVM_DIR/nvm.sh -nvm install -nvm use - -set -e - -npm install - -echo "Fixing the hacks..." - -# React-Native doesnt like having .babelrc files in modules, and officially suggests not shipping react-native modules with them included. -# This script scans all sub-dirs of node_modules, and removes any it finds, except the ones inside react-native itself. -find node_modules -type f -name .babelrc | grep -v /react-native/ | xargs rm || echo "Already patched!" diff --git a/scripts/build b/scripts/build index 38e8171..cb8d694 100755 --- a/scripts/build +++ b/scripts/build @@ -12,3 +12,9 @@ nvm use set -e npm install + +echo "Fixing the hacks..." + +# React-Native doesnt like having .babelrc files in modules, and officially suggests not shipping react-native modules with them included. +# This script scans all sub-dirs of node_modules, and removes any it finds, except the ones inside react-native itself. +find node_modules -type f -name .babelrc | grep -v /react-native/ | xargs rm || echo "Already patched!"