archive
/
zxcvbn-app
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
zxcvbn-app/Makefile

35 lines
406 B
Makefile

NODE=$(PWD)/node_modules/.bin
build:
$(NODE)/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