mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
chore: cleanup mangled makefile
This commit is contained in:
parent
b5b02f82a6
commit
4f99120485
1 changed files with 1 additions and 9 deletions
10
Makefile
10
Makefile
|
@ -7,7 +7,7 @@ lint: ## run pre-commit hooks
|
||||||
types: ## run mypy
|
types: ## run mypy
|
||||||
mypy src/viv
|
mypy src/viv
|
||||||
|
|
||||||
bump: check-version ## update version and tag commit
|
bump: ## update version and tag commit
|
||||||
@echo "bumping to version => $(VERSION)"
|
@echo "bumping to version => $(VERSION)"
|
||||||
@sed -i 's/__version__ = ".*"/__version__ = "$(VERSION)"/g' src/viv/viv.py
|
@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
|
@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
|
venv: ## generate environment
|
||||||
pdm install
|
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
|
clean: ## remove build artifacts
|
||||||
rm -rf {build,dist}
|
rm -rf {build,dist}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue