···11-.PHONY: help test build clean run css
11+.PHONY: help test build clean run css format-examples
2233help:
44 @echo "quickslice - Makefile Commands"
···77 @echo " make test - Run all tests"
88 @echo " make build - Build all projects"
99 @echo " make clean - Clean build artifacts"
1010+ @echo " make format-examples - Format example HTML files"
1011 @echo ""
11121213# Run all tests
···2930 @cd lexicon_graphql && gleam clean
3031 @cd server && gleam clean
3132 @echo "Clean complete"
3333+3434+# Format example HTML files
3535+format-examples:
3636+ @prettier --write "examples/**/*.html"