From 2c7798f1b31bfff4965e91c1670234eaab682c2d Mon Sep 17 00:00:00 2001 From: Kai Cataldo Date: Mon, 17 Oct 2016 19:03:54 -0400 Subject: [PATCH] Add make command to delete node_modules --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 6deaeb6e0b6f..eb60f939d7ea 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,10 @@ test-clean: rm -rf packages/*/test/tmp rm -rf packages/*/test-fixtures.json +clean-all: + rm -rf packages/*/node_modules + make clean + # without lint test-only: ./scripts/test.sh @@ -64,6 +68,7 @@ publish: #./scripts/build-website.sh bootstrap: + make clean-all npm install ./node_modules/.bin/lerna bootstrap make build