From 0747467de24b711d6e750992e2ac3afa41020caf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Valenta?= <git@imaniti.org>
Date: Fri, 14 Apr 2023 12:53:46 +0200
Subject: [PATCH] move away from nodeenv

---
 Makefile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 0ba8c72..05ccc14 100644
--- a/Makefile
+++ b/Makefile
@@ -29,8 +29,7 @@ venv: .venv/bin/python
 
 install: venv
 	${VENV}/bin/pip install -r requirements/base.txt -r requirements/production.txt
-	${VENV}/bin/nodeenv --python-virtualenv --node=19.3.0
-	${VENV}/bin/npm install
+	npm install
 
 install-hooks:
 	pre-commit install --install-hooks
@@ -39,7 +38,7 @@ hooks:
 	pre-commit run -a
 
 build: venv
-	${VENV}/bin/npm run build
+	npm run build
 	${VENV}/bin/python manage.py collectstatic --noinput --settings=${SETTINGS}
 
 run: venv
-- 
GitLab