Skip to content

Instantly share code, notes, and snippets.

@emilianoeloi
Last active October 11, 2024 21:33
Show Gist options
  • Save emilianoeloi/040e33fb973be43cb076ba80925c72cd to your computer and use it in GitHub Desktop.
Save emilianoeloi/040e33fb973be43cb076ba80925c72cd to your computer and use it in GitHub Desktop.
Makefile for React Native Project
.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