mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
chore: upgrade deps (#10824)
This commit is contained in:
@@ -37,15 +37,17 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "^29.5.14",
|
||||
"@types/node": "^22.10.10",
|
||||
"@types/node": "^22.14.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.57.1",
|
||||
"eslint-config-neon": "^0.1.62",
|
||||
"eslint": "^9.24.0",
|
||||
"eslint-config-neon": "^0.2.7",
|
||||
"eslint-formatter-compact": "^8.40.0",
|
||||
"eslint-formatter-pretty": "^6.0.1",
|
||||
"jest": "^29.7.0",
|
||||
"prettier": "^3.4.2",
|
||||
"tsup": "^8.3.5",
|
||||
"turbo": "^2.3.3",
|
||||
"typescript": "~5.5.4"
|
||||
"prettier": "^3.5.3",
|
||||
"terser": "^5.37.0",
|
||||
"tsup": "^8.4.0",
|
||||
"turbo": "^2.5.0",
|
||||
"typescript": "~5.8.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ export enum Meaning {
|
||||
*
|
||||
* @public
|
||||
*/
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
|
||||
export interface IApiItemOptions {}
|
||||
|
||||
export interface IApiItemJson {
|
||||
|
||||
@@ -490,9 +490,7 @@ export function ApiItemContainerMixin<TBaseClass extends IApiItemConstructor>(
|
||||
// ^^^
|
||||
// ```
|
||||
const firstReferenceToken: ExcerptToken | undefined = extendsType.excerpt.spannedTokens.find(
|
||||
(token: ExcerptToken) => {
|
||||
return token.kind === ExcerptTokenKind.Reference && token.canonicalReference;
|
||||
},
|
||||
(token: ExcerptToken) => token.kind === ExcerptTokenKind.Reference && token.canonicalReference,
|
||||
);
|
||||
|
||||
if (!firstReferenceToken) {
|
||||
|
||||
@@ -77,7 +77,7 @@ export class ApiModel extends ApiItemContainerMixin(ApiItem) {
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
// eslint-disable-next-line @typescript-eslint/class-literal-property-style
|
||||
|
||||
public override get containerKey(): string {
|
||||
return '';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user