tera-introspection 0.1.0

Utilities for introspecting Tera templates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
test:
	@cargo nextest run --all-features

cov:
	@cargo llvm-cov nextest --all-features --workspace --lcov --output-path coverage/lcov-$(shell date +%F).info

release:
	@cargo release tag --execute
	@git cliff -o CHANGELOG.md
	@git commit -a -m "Update CHANGELOG.md" || true
	@cargo release push --execute

.PHONY: proto-build cov test