chore(Makefile): change npm install command to npm ci for frontend installation to ensure reproducible builds

This commit is contained in:
anovazzi1
2023-08-15 15:39:33 -03:00
parent 993cea0c0b
commit b528ae86fd

View File

@ -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