From cf3c1c09ef9b5a50efd91abcf89f62b8eb99c63a Mon Sep 17 00:00:00 2001 From: Achintha Isuru Date: Thu, 22 Jan 2026 11:11:56 -0500 Subject: [PATCH] chore: Add localization generation to mobile install The mobile-install target now generates localization files after bootstrapping the workspace, ensuring localization is up to date during setup. --- makefiles/mobile.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makefiles/mobile.mk b/makefiles/mobile.mk index 6f639652..d7797efb 100644 --- a/makefiles/mobile.mk +++ b/makefiles/mobile.mk @@ -8,6 +8,8 @@ MOBILE_DIR := apps/mobile mobile-install: install-melos @echo "--> Bootstrapping mobile workspace (Melos)..." @cd $(MOBILE_DIR) && melos bootstrap + @echo "--> Generating localization files..." + @cd $(MOBILE_DIR) && melos run gen:l10n mobile-info: @echo "--> Fetching mobile command info..."