mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-08 14:13:01 -04:00
Bob The Fixer
This commit is contained in:
parent
9dd488ba4c
commit
9f4c4f30ab
6 changed files with 12 additions and 8 deletions
|
@ -98,7 +98,7 @@ export const makeAllPackagesExternalPlugin = {
|
|||
};
|
||||
|
||||
/**
|
||||
* @type {(kind: "web" | "discordDesktop" | "vencordDesktop" | "equicordDesktop") => import("esbuild").Plugin}
|
||||
* @type {(kind: "web" | "discordDesktop" | "vencordDesktop" | "equicordDesktop" | "fullcordDesktop") => import("esbuild").Plugin}
|
||||
*/
|
||||
export const globPlugins = kind => ({
|
||||
name: "glob-plugins",
|
||||
|
@ -138,7 +138,8 @@ export const globPlugins = kind => ({
|
|||
(target === "desktop" && kind === "web") ||
|
||||
(target === "discordDesktop" && kind !== "discordDesktop") ||
|
||||
(target === "vencordDesktop" && kind !== "vencordDesktop") ||
|
||||
(target === "equicordDesktop" && kind !== "equicordDesktop");
|
||||
(target === "equicordDesktop" && kind !== "equicordDesktop") ||
|
||||
(target === "fullcordDesktop" && kind !== "fullcordDesktop");
|
||||
|
||||
if (excluded) {
|
||||
const name = await resolvePluginName(fullDir, file);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue