fix generatePluginList

This commit is contained in:
Vendicated 2023-04-05 04:54:54 +02:00
parent 6492908a62
commit 99391a4f0e
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ interface PluginData {
hasCommands: boolean; hasCommands: boolean;
required: boolean; required: boolean;
enabledByDefault: boolean; enabledByDefault: boolean;
target: "desktop" | "web" | "dev"; target: "discordDesktop" | "vencordDesktop" | "web" | "dev";
} }
const devs = {} as Record<string, Dev>; const devs = {} as Record<string, Dev>;
@ -150,7 +150,7 @@ async function parseFile(fileName: string) {
const fileBits = fileName.split("."); const fileBits = fileName.split(".");
if (fileBits.length > 2 && ["ts", "tsx"].includes(fileBits.at(-1)!)) { if (fileBits.length > 2 && ["ts", "tsx"].includes(fileBits.at(-1)!)) {
const mod = fileBits.at(-2)!; const mod = fileBits.at(-2)!;
if (!["web", "desktop", "dev"].includes(mod)) throw fail(`invalid target ${fileBits.at(-2)}`); if (!["web", "discordDesktop", "vencordDesktop", "dev"].includes(mod)) throw fail(`invalid target ${fileBits.at(-2)}`);
data.target = mod as any; data.target = mod as any;
} }