Make clean with makefile in frontend folder (#401)

This commit is contained in:
Jonathan Zernik 2020-11-06 18:05:29 -05:00 committed by GitHub
parent c3a5740bbb
commit 478443af45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -5,6 +5,7 @@ clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
find . -name '*~' -delete
make --directory=frontend clean;
test:
tox

6
frontend/Makefile Normal file
View file

@ -0,0 +1,6 @@
all: clean
clean:
rm -rf build node_modules
.PHONY: all clean