update make frontendc (#783)

chore(Makefile): update 'install_frontendc' target to remove existing
node_modules and package-lock.json before running 'npm install' to
ensure a clean installation
This commit is contained in:
anovazzi1
2023-08-17 15:39:35 -03:00
committed by GitHub
2 changed files with 7179 additions and 5 deletions

View File

@ -35,7 +35,7 @@ install_frontend:
cd src/frontend && npm install;
install_frontendc:
cd src/frontend && npm ci;
cd src/frontend && rm -rf node_modules package-lock.json && npm install;
run_frontend:
cd src/frontend && npm start

File diff suppressed because it is too large Load Diff