From b8bd869e647468d4cc43a5fe25d2769befc71d72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Fri, 2 Aug 2024 14:23:21 +0900 Subject: [PATCH] chore: create new script(count-docs) in package.json (#11) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit package.json에 count-docs 스크립트 추가. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 80bf575..961f661 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,8 @@ "scripts": { "prepare": "husky", "lint-editorconfig": "npx editorconfig-checker", - "lint-markdownlint": "npx markdownlint **/*.md" + "lint-markdownlint": "npx markdownlint **/*.md", + "count-docs": "ls -R docs/ | grep .md | wc -l" }, "devDependencies": { "editorconfig-checker": "^5.1.8",