13 lines
351 B
Makefile
13 lines
351 B
Makefile
.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
|