Skip to content

Commit a289221

Browse files
committed
feat(make): add build command
1 parent c6ac7e0 commit a289221

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ examples: setup
5656
# Run all checks (format and static analysis don't require Docker)
5757
check: format static test
5858

59+
build:
60+
rm -rf dist
61+
uv build
62+
5963
# Clean up
6064
clean: teardown
6165
@echo "Cleaning up..."
@@ -85,6 +89,7 @@ help:
8589
@echo " make examples Run all examples (auto-starts Docker)"
8690
@echo " make check Run all checks (format, static, test)"
8791
@echo " make clean Clean up and stop Docker environment"
92+
@echo " make build Clean out previous builds and build the project"
8893
@echo " make help Show this help message"
8994

9095
# Default target

0 commit comments

Comments
 (0)