diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0248cb3 --- /dev/null +++ b/Makefile @@ -0,0 +1,35 @@ + + +build: + rm -rf dist/ + tsc + + +install: node_modules typings + + +node_modules: + npm install + +typings: + typings install + + +run: + react-native run-android + + +release-android: + cd android/ + ./gradlew assembleRelease + cd ../ + + +release-android-install: + adb uninstall com.zxcvbn + cd android + ./gradlew installRelease + cd ../ + + +.PHONY: build install run release-android release-android-install