···1-.PHONY: help test build clean run css
23help:
4 @echo "quickslice - Makefile Commands"
···7 @echo " make test - Run all tests"
8 @echo " make build - Build all projects"
9 @echo " make clean - Clean build artifacts"
010 @echo ""
1112# Run all tests
···29 @cd lexicon_graphql && gleam clean
30 @cd server && gleam clean
31 @echo "Clean complete"
0000
···1+.PHONY: help test build clean run css format-examples
23help:
4 @echo "quickslice - Makefile Commands"
···7 @echo " make test - Run all tests"
8 @echo " make build - Build all projects"
9 @echo " make clean - Clean build artifacts"
10+ @echo " make format-examples - Format example HTML files"
11 @echo ""
1213# Run all tests
···30 @cd lexicon_graphql && gleam clean
31 @cd server && gleam clean
32 @echo "Clean complete"
33+34+# Format example HTML files
35+format-examples:
36+ @prettier --write "examples/**/*.html"