From b7bc2faa8739eda064f0f1c4e15f503bfaec73b5 Mon Sep 17 00:00:00 2001 From: tycon Date: Sun, 12 Oct 2025 00:52:59 +0800 Subject: [PATCH] Add build script to package.json Introduced a 'build' script that runs 'vitepress build docs' to streamline documentation building. This provides a standard 'npm run build' command for the project. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e4155f6d..825e459d 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,8 @@ "scripts": { "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", - "docs:serve": "vitepress serve docs" + "docs:serve": "vitepress serve docs", + "build": "vitepress build docs" }, "devDependencies": { "js-yaml": "^4.1.0",