From b64083b006ed0865fd62fb4a5ca14f996a1b0a75 Mon Sep 17 00:00:00 2001 From: thejinchao Date: Sat, 22 Feb 2025 20:28:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0ignore=E5=92=8C=E9=83=A8?= =?UTF-8?q?=E7=BD=B2=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +++ package.json | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 07e6e47..ddd1657 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ /node_modules +/docs/.vuepress/.cache +/docs/.vuepress/.temp +/docs/.vuepress/dist diff --git a/package.json b/package.json index dc87a3d..5f08a2e 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,9 @@ "vuepress": "^2.0.0-rc.19" }, "scripts": { - "dev": "vuepress dev docs", - "build": "vuepress build docs" + "docs:build": "vuepress build docs", + "docs:clean-dev": "vuepress dev docs --clean-cache", + "docs:dev": "vuepress dev docs", + "docs:update-package": "yarn dlx vp-update" } }