Skip to content

Commit

Permalink
makefile: does it build with --legacy-peer-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzylogic2000 authored and goapunk committed Nov 3, 2022
1 parent dd09086 commit f9fd91e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f9fd91e

Please sign in to comment.