From 47f6e304c8ed3d18b247914973eb736a503251f5 Mon Sep 17 00:00:00 2001 From: Adpro <101449500+adproqwq@users.noreply.github.com> Date: Fri, 5 Apr 2024 14:32:51 +0800 Subject: [PATCH] fix: json5 --- Template.md | 4 ++-- src/convert.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Template.md b/Template.md index b28518c..c921d0d 100644 --- a/Template.md +++ b/Template.md @@ -24,7 +24,7 @@ Fork 本仓库的 `main`分支。 ``` 的李跳跳规则填写进入`ltt.json`,然后运行 github action 里的 `convert`。 -运行成功后,转换结果会出现在`-1.json`。 +运行成功后,转换结果会出现在`result.json5`。 然后参照[教程](https://ltt2gkd.adproqwq.xyz/tutoril.html)导入GKD, @@ -56,7 +56,7 @@ pnpm i pnpm convert ``` -运行成功后,转换结果会出现在`-1.json`。 +运行成功后,转换结果会出现在`result.json5`。 然后参照[教程](https://ltt2gkd.adproqwq.xyz/tutoril.html)导入GKD, diff --git a/src/convert.ts b/src/convert.ts index ca8d694..9a51213 100644 --- a/src/convert.ts +++ b/src/convert.ts @@ -111,6 +111,6 @@ const convert = async () => { await fs.writeFile(process.cwd() + '/log.txt', `共识别到应用${originLength}个,已抛弃${throwCount}个未知应用的规则`); - await fs.writeFile(process.cwd() + '/-1.json', JSON.stringify(thisSub)); + await fs.writeFile(process.cwd() + '/result.json5', json5.stringify(thisSub)); }; convert(); \ No newline at end of file