Updated package.json to add js-yaml dependencies and configure husky hooks to…
Updated package.json to add js-yaml dependencies and configure husky hooks to generate documentation; New llms-full.txt (#4562) * 更新 package.json 添加 js-yaml 依赖,并配置 husky 钩子以生成文档;新增 llms-full.txt 和 llms.txt 文件以整理文档链接;修正 ollama.md 中的描述。 * Update the document generation logic to extract and parse the pre-metadata to ensure that the generated document contains the title and description information. * Optimize the document generation logic, extract and parse the pre-metadata, and ensure that the generated document contains the title and description information. * Updated document generation logic to change the title and description format from the original metadata format to Markdown format to improve document readability and consistency.
Showing
docSite/static/js/doc-generate-llms.js
0 → 100644
docSite/static/llms-full.txt
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
docSite/static/llms.txt
0 → 100644
This diff is collapsed.
Click to expand it.
| ... | ... | @@ -25,6 +25,7 @@ |
| "prettier": "3.2.4", | ||
| "react-i18next": "14.1.2", | ||
| "vitest": "^3.0.9", | ||
| "js-yaml": "^4.1.0", | ||
| "mongodb-memory-server": "^10.1.4", | ||
| "zhlint": "^0.7.4" | ||
| }, | ||
| ... | ... | @@ -38,5 +39,10 @@ |
| "engines": { | ||
| "node": ">=18.16.0", | ||
| "pnpm": ">=9.0.0" | ||
| }, | ||
| "husky": { | ||
| "hooks": { | ||
| "pre-commit": "node docSite/static/js/doc-generate-llms.js" | ||
| } | ||
| } | ||
| } |
Please
register
or
sign in
to comment