Skip to content

Commit 4ef9808

Browse files
author
Fuss Florian (uid10804)
committed
chore(makefile): add cleanup command to remove all node_modules folder
1 parent 2fb32f7 commit 4ef9808

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,11 @@ ifndef GH_TOKEN
8181
endif
8282
make install
8383
npx lerna version --include-merged-tags --force-publish --conventional-commits --create-release github
84-
npx lerna publish from-git --yes
84+
npx lerna publish from-git --yes
85+
86+
.PHONY: cleanup
87+
cleanup:
88+
rm -rf node_modules
89+
cd packages/cli && rm -rf node_modules
90+
cd packages/template && rm -rf node_modules
91+
cd packages/server && rm -rf node_modules

0 commit comments

Comments
 (0)