mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
Make clean with makefile in frontend folder (#401)
This commit is contained in:
parent
c3a5740bbb
commit
478443af45
2 changed files with 7 additions and 0 deletions
1
Makefile
1
Makefile
|
|
@ -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
6
frontend/Makefile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
all: clean
|
||||
|
||||
clean:
|
||||
rm -rf build node_modules
|
||||
|
||||
.PHONY: all clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue