Last active
October 11, 2024 21:33
-
-
Save emilianoeloi/040e33fb973be43cb076ba80925c72cd to your computer and use it in GitHub Desktop.
Makefile for React Native Project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.SILENT: | |
.PHONY: android ios | |
setup: | |
@npm install | |
reset: | |
@watchman watch-del-all | |
@rm -rf node_modules | |
@npm cache clean | |
start: | |
@npm start | |
ios: | |
@react-native run-ios | |
android: | |
@react-native run-android | |
open-ios: | |
@open ios/Example.xcodeproj | |
open-android: | |
@open -a /Applications/Android\ Studio.app ./android |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment