Compare commits

...

7 Commits

Author SHA1 Message Date
烟囱鸭
d73e5d2163
Merge c87083d594 into 71822c4975 2025-10-11 20:10:46 +03:00
tycon
c87083d594 Add XML code block formatting to usage examples
Wrapped all tool usage examples in XML code blocks for improved clarity and consistency. This helps users better understand the expected format for tool requests.
2025-10-12 01:09:50 +08:00
tycon
7d0f9b6275 Add XML code block formatting to usage examples
Wrapped <replace_in_file> usage examples in XML code blocks for improved readability and clarity in the documentation.
2025-10-12 01:05:45 +08:00
tycon
2f185d919c Update build script to use direct VitePress binary
Changed the build script in package.json to invoke the VitePress binary directly via node instead of using npx. This can improve reliability in certain environments where npx behavior may vary.
2025-10-12 01:00:59 +08:00
tycon
951bb947df Update build script to use npx for VitePress
The build script now uses 'npx vitepress build docs' to ensure the correct VitePress binary is used, improving compatibility and reliability.
2025-10-12 00:58:36 +08:00
tycon
b7bc2faa87 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.
2025-10-12 00:52:59 +08:00
tycon
e8d7d4564c 修复文档 2025-10-12 00:49:14 +08:00
2 changed files with 724 additions and 680 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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": "node node_modules/vitepress/bin/vitepress.js build docs"
},
"devDependencies": {
"js-yaml": "^4.1.0",