mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
chore: update deps & search indice action refactor (#11339)
* chore: update deps & search indice action refactor - Updated pnpm, dependencies and regenerated the lockfile - Removed immer and some eslint plugins that weren't being used - Updated the version of `@types/node` to v24 on internal packages as that's the version that is being used on github actions - Refactored the uploadSearchIndices action slightly and upgraded the meilisearch dependency * chore: remove more deps
This commit is contained in:
@@ -74,7 +74,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@turbo/gen": "^2.6.3",
|
||||
"@types/node": "^22.19.1",
|
||||
"@types/node": "^24.10.1",
|
||||
"cross-env": "^10.1.0",
|
||||
"eslint": "^9.39.1",
|
||||
"eslint-config-neon": "^0.2.9",
|
||||
|
||||
@@ -167,7 +167,10 @@ export async function generateAllIndices({
|
||||
fetchPackageVersionDocs = fetchVersionDocs,
|
||||
writeToFile = true,
|
||||
} = {}) {
|
||||
const indices: Record<any, any>[] = [];
|
||||
const indices: {
|
||||
data: ReturnType<typeof visitNodes>;
|
||||
index: string;
|
||||
}[] = [];
|
||||
|
||||
for (const pkg of PACKAGES) {
|
||||
const versions = await fetchPackageVersions(pkg);
|
||||
|
||||
Reference in New Issue
Block a user