From af1cf1ba27913c26397c98ffb5b979714ca9a739 Mon Sep 17 00:00:00 2001 From: Daijiro Wachi Date: Fri, 26 May 2017 10:01:27 +0200 Subject: [PATCH] tools: add make lint-md-clean PR-URL: https://github.com/nodejs/node/pull/12756 Reviewed-By: Refael Ackermann Reviewed-By: Vse Mozhet Byt Reviewed-By: James M Snell Reviewed-By: Sakthipriyan Vairamani --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index b19057089c..6722873027 100644 --- a/Makefile +++ b/Makefile @@ -948,6 +948,10 @@ bench: bench-net bench-http bench-fs bench-tls bench-ci: bench +lint-md-clean: + $(RM) -r tools/remark-cli/node_modules + $(RM) -r tools/remark-preset-lint-node/node_modules + lint-md-build: if [ ! -d tools/remark-cli/node_modules ]; then \ cd tools/remark-cli && ../../$(NODE) ../../$(NPM) install; fi @@ -1083,6 +1087,8 @@ endif lint-js-ci \ list-gtests \ lint-md \ + lint-md-build \ + lint-md-clean \ pkg \ release-only \ run-ci \