Skip to content

Commit

Permalink
Add make-rule to clean built docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hmpf committed Jan 21, 2025
1 parent 3d8d6ca commit c164d5d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: clean testclean distclean coverageclean cacheclean nuke tailwind
.PHONY: clean testclean distclean coverageclean cacheclean nuke tailwind docclean

TAILWINDDIR=src/argus/htmx/tailwindtheme
STATICDIR=src/argus/htmx/static
Expand All @@ -15,6 +15,9 @@ distclean:
-rm -rf ./dist
-rm -rf ./build

docclean:
-rm -rf ./docs/_build

coverageclean:
-rm .coverage
-rm .coverage.*
Expand All @@ -24,7 +27,7 @@ coverageclean:
testclean: coverageclean clean
-rm -rf .tox

nuke: clean distclean testclean cacheclean
nuke: clean docclean distclean testclean cacheclean

tailwind:
tailwindcss -c $(TAILWINDDIR)/tailwind.config.js -i $(TAILWINDDIR)/styles.css -o $(STATICDIR)/styles.css

0 comments on commit c164d5d

Please sign in to comment.