mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-19 16:25:09 +08:00
chore: 更新文档展示结构
This commit is contained in:
11
src/file.ts
11
src/file.ts
@@ -343,7 +343,14 @@ export const updateReadMeMd = async (
|
||||
.reduce((p, c) => p + (c.groups?.length || 0), 0)
|
||||
.toString(),
|
||||
)
|
||||
.replaceAll('--VERSION--', (newConfig.version || 0).toString())
|
||||
.replaceAll('--APP_LIST--', appListText);
|
||||
.replaceAll('--VERSION--', (newConfig.version || 0).toString());
|
||||
await fs.writeFile(process.cwd() + '/README.md', readMeMdText);
|
||||
const appListTemplateMd = await fs.readFile(
|
||||
process.cwd() + '/AppListTemplate.md',
|
||||
'utf-8',
|
||||
);
|
||||
await fs.writeFile(
|
||||
process.cwd() + '/AppList.md',
|
||||
appListTemplateMd.replaceAll('--APP_LIST--', appListText),
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user