A React Native app for tracking powerlifting progress.
apps/mobile- React Native apppackages/common- Shared code between apps
- nvm
- yarn classic (v1)
# install the correct node version
nvm install
# install the dependencies
yarn# start the mobile app
yarn mobile:startAlways install dependencies in the workspace that is using them.
# install an expo version dependent package
yarn workspace @liftgraph/mobile expo add <package-name>
# install a package in the mobile app using yarn
yarn workspace @liftgraph/mobile add <package-name># build using tsc
yarn build
# linting
yarn lint
# testing with jest
yarn test