lerna 2.0.3

Lerna is a framework for elegantly configuring complex applications
Documentation

.PHONY: requirements develop build
requirements:  ## install required dev dependencies
	rustup component add rustfmt
	rustup component add clippy
	cargo install cargo-nextest --locked --force
	cargo install cargo-llvm-cov --force

develop: requirements  ## install required dev dependencies

build:  ## build release
	cargo build --release --all-features

.PHONY: lint lints fix format
lint:  ## run Clippy for linting, rustfmt for autoformat checks
	cargo clippy --all-features
	cargo fmt --all -- --check
# alias
lints: lint

fix:  ## fix code with rustfmt
	cargo fmt --all
#alias
format: fix

.PHONY: check checks
check:
	cargo check --all-features
# alias
checks: check

.PHONY: test tests test-ci tests-ci
test:  ## run the tests
	cargo llvm-cov nextest --cobertura --output-path  junit.xml

# alias
tests: test

coverage:
	cargo llvm-cov nextest --lcov --output-path coverage

.PHONY: dist publish
dist:  ## create dist
	cargo publish --dry-run --allow-dirty

publish:  ## publish to cargo
	cargo publish

# Thanks to Francoise at marmelab.com for this
.DEFAULT_GOAL := help
help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

print-%:
	@echo '$*=$($*)'