From b528ae86fd5db0bea193b31d1044eb190c7c100b Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 15 Aug 2023 15:39:33 -0300 Subject: [PATCH] chore(Makefile): change npm install command to npm ci for frontend installation to ensure reproducible builds --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4d20de28b..f8603f552 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ lint: poetry run ruff . --fix install_frontend: - cd src/frontend && rm -rf node_modules && npm install + cd src/frontend && npm ci run_frontend: cd src/frontend && npm start