ci(generatePluginList): add filePath
This commit is contained in:
parent
eacc673bcc
commit
cfca393f2b
1 changed files with 9 additions and 1 deletions
|
@ -18,7 +18,8 @@
|
||||||
|
|
||||||
import { Dirent, readdirSync, readFileSync, writeFileSync } from "fs";
|
import { Dirent, readdirSync, readFileSync, writeFileSync } from "fs";
|
||||||
import { access, readFile } from "fs/promises";
|
import { access, readFile } from "fs/promises";
|
||||||
import { join } from "path";
|
import { join, sep } from "path";
|
||||||
|
import { normalize as posixNormalize, sep as posixSep } from "path/posix";
|
||||||
import { BigIntLiteral, createSourceFile, Identifier, isArrayLiteralExpression, isCallExpression, isExportAssignment, isIdentifier, isObjectLiteralExpression, isPropertyAccessExpression, isPropertyAssignment, isSatisfiesExpression, isStringLiteral, isVariableStatement, NamedDeclaration, NodeArray, ObjectLiteralExpression, ScriptTarget, StringLiteral, SyntaxKind } from "typescript";
|
import { BigIntLiteral, createSourceFile, Identifier, isArrayLiteralExpression, isCallExpression, isExportAssignment, isIdentifier, isObjectLiteralExpression, isPropertyAccessExpression, isPropertyAssignment, isSatisfiesExpression, isStringLiteral, isVariableStatement, NamedDeclaration, NodeArray, ObjectLiteralExpression, ScriptTarget, StringLiteral, SyntaxKind } from "typescript";
|
||||||
|
|
||||||
import { getPluginTarget } from "./utils.mjs";
|
import { getPluginTarget } from "./utils.mjs";
|
||||||
|
@ -39,6 +40,7 @@ interface PluginData {
|
||||||
required: boolean;
|
required: boolean;
|
||||||
enabledByDefault: boolean;
|
enabledByDefault: boolean;
|
||||||
target: "discordDesktop" | "vencordDesktop" | "web" | "dev";
|
target: "discordDesktop" | "vencordDesktop" | "web" | "dev";
|
||||||
|
filePath: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const devs = {} as Record<string, Dev>;
|
const devs = {} as Record<string, Dev>;
|
||||||
|
@ -165,6 +167,12 @@ async function parseFile(fileName: string) {
|
||||||
data.target = target as any;
|
data.target = target as any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
data.filePath = posixNormalize(fileName)
|
||||||
|
.split(sep)
|
||||||
|
.join(posixSep)
|
||||||
|
.replace(/\/index\.([jt]sx?)$/, "")
|
||||||
|
.replace(/^src\/plugins\//, "");
|
||||||
|
|
||||||
let readme = "";
|
let readme = "";
|
||||||
try {
|
try {
|
||||||
readme = readFileSync(join(fileName, "..", "README.md"), "utf-8");
|
readme = readFileSync(join(fileName, "..", "README.md"), "utf-8");
|
||||||
|
|
Loading…
Reference in a new issue