From 05604a8f12246990842c05654ba314b7ee12a725 Mon Sep 17 00:00:00 2001 From: Daniel Arroyo Date: Fri, 31 Jul 2026 15:15:25 -0400 Subject: [PATCH] Makefile: frontend/install uses npm ci, frontend/build depends on frontend/install --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 887a647..fa44a32 100644 --- a/Makefile +++ b/Makefile @@ -89,14 +89,14 @@ migrate/create: ## frontend/install: Install frontend dependencies frontend/install: - cd $(FRONTEND_DIR) && npm install + cd $(FRONTEND_DIR) && npm ci ## frontend/dev: Run frontend dev server frontend/dev: cd $(FRONTEND_DIR) && npm run dev ## frontend/build: Build frontend for production -frontend/build: +frontend/build: frontend/install cd $(FRONTEND_DIR) && npm run build ## docker/build: Build Docker image