Commit 101da30c authored by Robert Knight's avatar Robert Knight

Revert "Replace `make clean` with `hdev clean`"

This reverts commit df0084c0.
parent df0084c0
......@@ -13,6 +13,8 @@ help:
@echo "make sure Make sure that the formatter, linter, tests, etc all pass"
@echo "make docs Build docs website and serve it locally"
@echo "make checkdocs Crash if building the docs website fails"
@echo "make clean Delete development artefacts (cached files, "
@echo " dependencies, etc)"
.PHONY: dev
dev: node_modules/.uptodate
......@@ -39,6 +41,11 @@ docs: python
checkdocs: python
tox -e checkdocs
.PHONY: clean
clean:
rm -f node_modules/.uptodate
rm -rf build
.PHONY: format
format: node_modules/.uptodate
yarn run format
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment