From b26c3a78b84a2a18f505c9599fff97faefce0842 Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Tue, 18 Jun 2024 10:21:23 -0400 Subject: [PATCH] Fix npm steps in make bootstrap This changeset fixes the order of steps in the make bootstrap command so npm does not fail. Signed-off-by: Carlo Costino --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ab8e3178a..90e8e76de 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,8 @@ bootstrap: generate-version-file ## Set up everything to run the app poetry install --sync --no-root poetry run playwright install --with-deps poetry run pre-commit install - source $(NVMSH) --no-use && nvm install && npm ci --no-audit - source $(NVMSH) && npm install + source $(NVMSH) --no-use && nvm install && npm install + source $(NVMSH) && npm ci --no-audit source $(NVMSH) && npm run build .PHONY: watch-frontend