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
Raw Normal View History

2016-09-17 14:40:54 +01:00
NODE=$(PWD)/node_modules/.bin
2016-09-16 23:20:21 +01:00
build:
2016-09-17 14:40:54 +01:00
$(NODE)/tsc
2016-09-16 23:20:21 +01:00
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