We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6ac7e0 commit a289221Copy full SHA for a289221
Makefile
@@ -56,6 +56,10 @@ examples: setup
56
# Run all checks (format and static analysis don't require Docker)
57
check: format static test
58
59
+build:
60
+ rm -rf dist
61
+ uv build
62
+
63
# Clean up
64
clean: teardown
65
@echo "Cleaning up..."
@@ -85,6 +89,7 @@ help:
85
89
@echo " make examples Run all examples (auto-starts Docker)"
86
90
@echo " make check Run all checks (format, static, test)"
87
91
@echo " make clean Clean up and stop Docker environment"
92
+ @echo " make build Clean out previous builds and build the project"
88
93
@echo " make help Show this help message"
94
95
# Default target
0 commit comments