Skip to content

Commit

Permalink
Switches the welcome.sh script to yarn.
Browse files Browse the repository at this point in the history
  • Loading branch information
skellock committed Nov 12, 2016
1 parent 4142fd8 commit 21e626e
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions scripts/welcome.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,18 @@ echo "-=-=-=-=-=-=-=-=-="
echo ""
echo "Let's get your build environment ready."
echo ""
echo "This will take about 5 minutes because.... well... npm. amirite???"
echo "Standby while we install dependencies."
echo ""
echo ""
npm run bootstrap
npm run build
npm run lint
npm run copy-internal-deps
npm test
cd packages/reactotron-core-client && yarn install && cd ../..
cd packages/reactotron-core-server && yarn install && cd ../..
cd packages/reactotron-apisauce && yarn install && cd ../..
cd packages/reactotron-redux && yarn install && cd ../..
cd packages/reactotron-redux-saga && yarn install && cd ../..
cd packages/reactotron-react-js && yarn install && cd ../..
cd packages/reactotron-react-native && yarn install && cd ../..
cd packages/demo-react-js && yarn install && cd ../..
cd packages/demo-react-native && yarn install && cd ../..
cd packages/reactotron-app && yarn install --ignore-engines && cd ../..

npm run e2e

0 comments on commit 21e626e

Please sign in to comment.