From f6ce48636b08292baac4fd443399ab9972e1a69b Mon Sep 17 00:00:00 2001 From: 1ilsang <1ilsang@naver.com> Date: Thu, 20 Feb 2025 01:11:03 +0900 Subject: [PATCH] build: print 'Formatting Markdown...' for long task markdown formatting PR-URL: https://github.com/nodejs/node/pull/57108 Reviewed-By: Yagiz Nizipli Reviewed-By: Jake Yuesong Li Reviewed-By: James M Snell --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index fa1162787a300d..39f5ee5e12a9b7 100644 --- a/Makefile +++ b/Makefile @@ -1400,6 +1400,7 @@ lint-md: lint-js-doc | tools/.mdlintstamp ## Lint the markdown documents maintai run-format-md = tools/lint-md/lint-md.mjs --format $(LINT_MD_FILES) .PHONY: format-md format-md: tools/lint-md/node_modules/remark-parse/package.json ## Format the markdown documents maintained by us in the codebase. + $(info Formatting Markdown...) @$(call available-node,$(run-format-md))