mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-18 07:45:10 +08:00
chore: 更新文档
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
# @gkd-kit/subscription
|
||||
|
||||
<p>
|
||||
<a href="https://www.npmjs.com/package/@gkd-kit/subscription"><img src="https://img.shields.io/npm/v/@gkd-kit/subscription.svg" alt="npm package"></a>
|
||||
</p>
|
||||
GKD 默认订阅规则
|
||||
|
||||
搞快点 APP 默认订阅规则
|
||||
当前订阅为 APP 自带, 无需手动添加, 当前版本: v108
|
||||
|
||||
当前订阅文件已适配 204 个 APP, 共有 505 规则组
|
||||
|
||||
@@ -221,4 +219,4 @@
|
||||
|
||||
## 感谢以下开发者的贡献
|
||||
|
||||

|
||||

|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
# @gkd-kit/subscription
|
||||
|
||||
<p>
|
||||
<a href="https://www.npmjs.com/package/@gkd-kit/subscription"><img src="https://img.shields.io/npm/v/@gkd-kit/subscription.svg" alt="npm package"></a>
|
||||
</p>
|
||||
GKD 默认订阅规则
|
||||
|
||||
搞快点 APP 默认订阅规则
|
||||
当前订阅为 APP 自带, 无需手动添加, 当前版本: v--VERSION--
|
||||
|
||||
当前订阅文件已适配 --APP_SIZE-- 个 APP, 共有 --GROUP_SIZE-- 规则组
|
||||
|
||||
@@ -16,4 +14,4 @@
|
||||
|
||||
## 感谢以下开发者的贡献
|
||||
|
||||

|
||||

|
||||
|
||||
12
src/file.ts
12
src/file.ts
@@ -30,15 +30,19 @@ export const writeConfig = async (fp: string, config: SubscriptionConfig) => {
|
||||
newConfig.version = oldConfig.version || 0;
|
||||
checkConfig(newConfig);
|
||||
|
||||
const hasUpdate = !_.isEqual(newConfig, oldConfig);
|
||||
if (hasUpdate) {
|
||||
newConfig.version++;
|
||||
}
|
||||
|
||||
// update md
|
||||
await updateReadMeMd(newConfig);
|
||||
console.log('更新文档');
|
||||
|
||||
if (_.isEqual(newConfig, oldConfig)) {
|
||||
console.log('没有检测到规则变化,跳过更新');
|
||||
if (!hasUpdate) {
|
||||
console.log('没有检测到规则变化,跳过更新JSON');
|
||||
return;
|
||||
}
|
||||
newConfig.version++;
|
||||
|
||||
// keep json key sort by map
|
||||
const map = new Map<string, unknown>();
|
||||
@@ -288,7 +292,7 @@ export const updateReadMeMd = async (newConfig: SubscriptionConfig) => {
|
||||
.reduce((p, c) => p + (c.groups?.length || 0), 0)
|
||||
.toString(),
|
||||
)
|
||||
.replace('--VERSION--', (newConfig.version || 0).toString())
|
||||
.replace('--APP_LIST--', appListText);
|
||||
|
||||
await fs.writeFile(process.cwd() + '/README.md', readMeMdText);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user