Skip to content

Commit

Permalink
Update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
aparnajyothi-y authored Oct 29, 2024
1 parent e8e6be1 commit f2b100c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Makefile for building the web frontend

.PHONY: all webfrontend-build clean
.PHONY: all webfrontend-build webfrontend-test clean

# Default target
all: webfrontend-build
Expand All @@ -10,6 +10,9 @@ webfrontend-build:
yarn install # Install dependencies
yarn build # Build the project

webfrontend-test:
yarn test

# Clean target
clean:
rm -rf build # Adjust according to your project's build output

0 comments on commit f2b100c

Please # to comment.