zerv 0.6.2

Generate versions for any commit from git and other version control - perfect for CI/CD builds and multiple formats
Documentation
run:
	cargo run --bin=zerv

setup_dev:
	pre-commit install
	cargo install cargo-tarpaulin

update:
	rustup update
	cargo update

lint:
	cargo check
	cargo fmt -- --check || (cargo fmt && exit 1)
	cargo clippy --all-targets --all-features -- -D warnings
	npx prettier --write "**/*.{ts,tsx,css,json,yaml,yml,md}"

test_fast:
	cargo test

test:
	RUST_BACKTRACE=1 cargo tarpaulin \
		--out Xml \
		--out Html \
		--output-dir coverage \
		--include-tests \
		--exclude-files src/main.rs \
		-- --include-ignored

open_coverage:
	open coverage/tarpaulin-report.html