feat(scriptsi): add script to sync implementation docs with wiki

- Introduced a new `update-wiki` script to automate the synchronization of implementation documentation from the repository to the wiki.
- Added necessary configuration files including `package.json`, `tsconfig.json`, and `.gitignore` for the new script.
- Updated the Makefile to include a target for running the `update-wiki` script.
This commit is contained in:
yusing
2026-01-08 18:17:06 +08:00
parent dbd210b665
commit a6af5779f9
6 changed files with 246 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "update-wiki",
"private": true,
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}