Skip to content

Commit

Permalink
feat: rm extlist
Browse files Browse the repository at this point in the history
  • Loading branch information
adproqwq committed Jun 10, 2024
1 parent 67f3896 commit 7a46c01
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion AppExtList.json5

This file was deleted.

4 changes: 1 addition & 3 deletions src/updateMd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import { PatchAppList } from '../patch';

export const UpdateMd = async () => {
const AppListFile = await fs.readFile(process.cwd() + '/AppList.json5', 'utf-8');
const AppExtListFile = await fs.readFile(process.cwd() + '/AppExtList.json5', 'utf-8');
const AppList = json5.parse(AppListFile);
const AppExtList = json5.parse(AppExtListFile);
const totalAppCount = getJsonArrayLength(AppList) + getJsonArrayLength(AppExtList);
const totalAppCount = getJsonArrayLength(AppList);

const patchCount = getJsonArrayLength(PatchAppList);

Expand Down

0 comments on commit 7a46c01

Please sign in to comment.