Ensure build uses the right dependencies (#520)
This commit is contained in:
parent
88318b0616
commit
c58a053c9a
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
|
@ -86,7 +86,7 @@ check-style: .yarninstall
|
|||
clean:
|
||||
@echo Cleaning app
|
||||
|
||||
npm cache clean
|
||||
yarn cache clean
|
||||
rm -rf node_modules
|
||||
rm -f .yarninstall
|
||||
rm -rf dist
|
||||
|
|
@ -126,7 +126,7 @@ do-build-ios:
|
|||
@cd fastlane && bundle exec fastlane ios $(ios_target)
|
||||
|
||||
|
||||
build-ios: | check-ios-target pre-run check-style start-packager do-build-ios stop-packager
|
||||
build-ios: | check-ios-target clean pre-run check-style start-packager do-build-ios stop-packager
|
||||
|
||||
check-android-target:
|
||||
ifneq ($(android_target), $(filter $(android_target), dev alpha release))
|
||||
|
|
@ -144,7 +144,7 @@ do-build-android:
|
|||
@echo "Building android $(android_target) app"
|
||||
@cd fastlane && bundle exec fastlane android $(android_target)
|
||||
|
||||
build-android: | check-android-target pre-run check-style start-packager prepare-android-build do-build-android stop-packager
|
||||
build-android: | check-android-target clean pre-run check-style start-packager prepare-android-build do-build-android stop-packager
|
||||
|
||||
alpha:
|
||||
@:
|
||||
|
|
|
|||
Loading…
Reference in a new issue