From 0a452750dd7978766a7860af72d93bcdd4d07919 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Thu, 27 Jul 2023 16:26:15 -0300 Subject: [PATCH] update make file to make_frontend to remove node_modules before install and avoid binding error --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 79e27833e..c123a9f18 100644 --- a/Makefile +++ b/Makefile @@ -32,10 +32,10 @@ lint: poetry run ruff . --fix install_frontend: - cd src/frontend && npm install + cd src/frontend && m -rf node_modules && npm install run_frontend: - cd src/frontend && npm start + cd src/frontend && rm -rf node_modules && npm start frontend: make install_frontend