From f9fd91e01d921a797154341294a52b259fc469b5 Mon Sep 17 00:00:00 2001 From: fuzzylogic2000 Date: Thu, 3 Nov 2022 10:13:11 +0100 Subject: [PATCH] makefile: does it build with --legacy-peer-deps --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 89ed40df7..e30d179f3 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ help: .PHONY: install install: - npm install --no-save + npm install --no-save --legacy-peer-deps npm run build if [ ! -f $(VIRTUAL_ENV)/bin/python3 ]; then python3 -m venv $(VIRTUAL_ENV); fi $(VIRTUAL_ENV)/bin/python3 -m pip install --upgrade -r requirements/dev.txt @@ -137,7 +137,7 @@ tx-mo: .PHONY: release release: export DJANGO_SETTINGS_MODULE ?= euth_wagtail.settings.build release: - npm install --silent + npm install --silent --legacy-peer-deps npm run build:prod $(VIRTUAL_ENV)/bin/python3 -m pip install -r requirements.txt -q $(VIRTUAL_ENV)/bin/python3 manage.py compilemessages -v0