From 9c052298a3aace830b9e2b7cde57897f3f320a35 Mon Sep 17 00:00:00 2001 From: AJ Slater Date: Fri, 23 Feb 2024 19:04:45 -0800 Subject: [PATCH] install npm in install deps --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 519844f..577ebac 100644 --- a/Makefile +++ b/Makefile @@ -2,27 +2,25 @@ ## Update pip and install poetry pip install --upgrade pip pip install --upgrade poetry + npm install .PHONY: install ## Install for production ## @category Install install-prod: install-deps poetry install --no-root --only-root - npm install .PHONY: install-dev ## Install dev requirements ## @category Install install-dev: install-deps poetry install --no-root --only-root --with dev - npm install .PHONY: install-all ## Install with all extras ## @category Install install-all: install-deps poetry install --no-root --all-extras - npm install .PHONY: clean ## Clean pycaches