2026-07-04 19:55:57 +00:00
|
|
|
.PHONY: publication build serve publish
|
|
|
|
|
|
|
|
|
|
publication: ## scaffold next edition (refuses if a draft exists)
|
|
|
|
|
@bash scripts/new-edition.sh
|
|
|
|
|
|
|
|
|
|
build: ## eleventy build -> dist/
|
|
|
|
|
npx @11ty/eleventy
|
|
|
|
|
|
|
|
|
|
serve: ## local preview
|
|
|
|
|
npx @11ty/eleventy --serve
|
|
|
|
|
|
|
|
|
|
publish: ## flip current draft -> published (terminal)
|
|
|
|
|
@bash scripts/publish.sh
|