From b1780a712833a34760ae51829834f8ed3bf0f863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 27 Jan 2022 21:21:29 +0100 Subject: [PATCH] docs: add list of nix deps update make targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Important now that we're onboarding more new devs. Signed-off-by: Jakub SokoĊ‚owski --- doc/STARTING_GUIDE.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/STARTING_GUIDE.md b/doc/STARTING_GUIDE.md index 7a94a2cdf9..19da410170 100644 --- a/doc/STARTING_GUIDE.md +++ b/doc/STARTING_GUIDE.md @@ -28,6 +28,13 @@ There are three steps necessary to start development, in this case for Android: The first two will continue watching for changes and keep re-building the app. They need to be ready first. The last one will exit once the app is up and ready. +# Updating Dependencies + +* `make nix-update-pods` - iOS CocoaPods dependencies (updates `ios/Podfile` and `ios/Podfile.loc`) +* `make nix-update-gradle` - Android Gradle/Maven dependencies (updates `nix/deps/gradle/deps.json`) +* `make nix-update-clojure` - Clojure Maven dependencies (updates `nix/deps/clojure/deps.json`) +* `make nix-update-gems` - Fastlane Ruby dependencies (updates `fastlane/Gemfile.lock` and `fastlane/gemset.nix`) + # Manual Steps There are a few manual steps you might want to do in order to start contributing.