From 84d901104ad41f5a393eebe511ed5c26155502bd Mon Sep 17 00:00:00 2001 From: aparnajyothi-y <147696841+aparnajyothi-y@users.noreply.github.com> Date: Tue, 29 Oct 2024 17:56:39 +0530 Subject: [PATCH] Update makefile --- makefile | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/makefile b/makefile index 2d3c89f..084e895 100644 --- a/makefile +++ b/makefile @@ -1,18 +1,10 @@ -# Makefile for building the web frontend +# Makefile -.PHONY: all webfrontend-build webfrontend-test clean +.PHONY: webfrontend-build webfrontend-test -# Default target -all: webfrontend-build - -# Target for building the web frontend webfrontend-build: - yarn install # Install dependencies - yarn build # Build the project + yarn install + yarn build webfrontend-test: - yarn test - -# Clean target -clean: - rm -rf build # Adjust according to your project's build output + yarn test