Skip to content

Commit 7946290

Browse files
committed
Add make clean command
1 parent 84ee450 commit 7946290

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,9 @@ upgrade: node_modules ## Yarn upgrade
2020
.PHONY: build
2121
build: node_modules ## Yarn build
2222
@docker run -it --rm --user=${USER_ID}:${GROUP_ID} -v ./:/app/ -w /app/ node:23 bash -c "yarn build"
23+
24+
.PHONY: clean
25+
clean: ## Remove files
26+
@rm -rf node_modules
27+
@rm -rf build
28+
@rm -rf .docusaurus

0 commit comments

Comments
 (0)