-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
能否同步多个语雀空间repo到hexo #29
Comments
暂时没有计划。可以具体说说你的需求~ |
是这样的,我们团队 在语雀 维护了不同的知识库。 |
2.0 版本可以支持一下,可能会换一个仓库名字,以更好的支持扩展 |
这竟然是个小众需求吗? |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
需求+3 |
需求+4 |
需求+5 |
需求+6 |
请问还会更新这个功能吗?我非常愿意为2.0版本贡献代码 |
需求+10086 |
需求 + 10087 |
我写了个简陋的脚本,可以解决这个问题,将该脚本加入你的构建过程中即可。
多仓库肯定意味着多个缓存文件,所有缓存可以装在一个文件夹中。但需要先创建 const FS = require('fs');
const spawn = require('cross-spawn');
const packageJson = require('./package.json')
// 扩展该列表即可实现多仓库同步
const yuqueConfigList = [
{
name: "仓库A",
postPath: "source/_posts/repoA",
cachePath: "yuqueCache/repoA.json",
repo: "仓库A的repo",
},
{
name: "仓库B",
postPath: "source/_posts/repoB",
cachePath: "yuqueCache/repoB.json",
repo: "仓库B的repo",
},
]
// 按照 yuqueConfigList 替换 yuqueConfig中的地址,仓库名,缓存地址。并逐个触发语雀文档同步。
for (const repo of yuqueConfigList) {
packageJson.yuqueConfig.postPath = repo.postPath
packageJson.yuqueConfig.cachePath = repo.cachePath
packageJson.yuqueConfig.repo = repo.repo
FS.writeFileSync('./package.json', JSON.stringify(packageJson, null, 2));
console.log('\n[sync]===>', repo.name, '<===[sync]');
spawn.sync('yarn', ['sync'], { stdio: 'inherit' })
}
"scripts": {
"sync": "yuque-hexo sync",
"clean:yuque": "rimraf yuqueCache/*",
"clean:yuque:linux": "rm -rf yuqueCache/*",
"build": "node syncAllYuqueRepo.js && hexo clean && hexo g -d",
"server": "node syncAllYuqueRepo.js && hexo clean && hexo g && hexo s",
},
...
"yuqueConfig": {
"postPath": "source/_posts/xxx",
"cachePath": "yuqueCache/yuque_xxx.json",
"mdNameFormat": "title",
"adapter": "hexo",
"concurrency": 5,
"baseUrl": "https://www.yuque.com/api/v2",
"login": "你的login",
"repo": "你的repo",
"token": "你的token"
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: