chore: cleanup mangled makefile

This commit is contained in:
Daylin Morgan 2023-05-29 12:51:55 -05:00
parent b5b02f82a6
commit 4f99120485
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -7,7 +7,7 @@ lint: ## run pre-commit hooks
types: ## run mypy
mypy src/viv
bump: check-version ## update version and tag commit
bump: ## update version and tag commit
@echo "bumping to version => $(VERSION)"
@sed -i 's/__version__ = ".*"/__version__ = "$(VERSION)"/g' src/viv/viv.py
@git add src/viv/viv.py && git commit -m "chore: bump version" --no-verify
@ -18,14 +18,6 @@ bump: check-version ## update version and tag commit
venv: ## generate environment
pdm install
# TAPES = demo freeze list-info-remove
# GIFS := $(foreach n, $(TAPES), docs/$(n).gif)
# docs: $(GIFS) # generate usage examples
# docs/%.gif: docs/%.tape
# viv rm $$(viv l -q)
# cd docs; vhs < $*.tape
clean: ## remove build artifacts
rm -rf {build,dist}