From b6d1cc6d639107e429bc1fba8e49f5549734d000 Mon Sep 17 00:00:00 2001 From: Daniel Ponte Date: Thu, 2 Jan 2025 22:18:32 -0500 Subject: [PATCH] split web build --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a0a54b2..a48dec7 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,13 @@ buildpprof: client/stillbox/dist: cd client/stillbox && npm install && ng build -c production -web: - cd client/stillbox && npm install && ng build -c production +web: web-install web-build + +web-build: + cd client/stillbox && ng build -c production + +web-install: + cd client/stillbox && npm install clean: rm -rf client/calls/ client/stillbox/dist/ client/stillbox/node_modules/