mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 12:33:30 +01:00
chore: bump dependencies (#11225)
This commit is contained in:
@@ -60,7 +60,7 @@
|
||||
"homepage": "https://discord.js.org",
|
||||
"funding": "https://github.com/discordjs/discord.js?sponsor",
|
||||
"dependencies": {
|
||||
"commander": "^14.0.1",
|
||||
"commander": "^14.0.2",
|
||||
"jsdoc-to-markdown": "^8.0.3",
|
||||
"tslib": "^2.8.1",
|
||||
"typedoc": "^0.25.13"
|
||||
@@ -68,11 +68,11 @@
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^4.1.0",
|
||||
"@types/jsdoc-to-markdown": "^7.0.6",
|
||||
"@types/node": "^22.18.8",
|
||||
"@types/node": "^22.18.13",
|
||||
"cross-env": "^10.1.0",
|
||||
"eslint": "^9.37.0",
|
||||
"eslint-config-neon": "^0.2.7",
|
||||
"eslint-formatter-compact": "^8.40.0",
|
||||
"eslint": "^9.38.0",
|
||||
"eslint-config-neon": "^0.2.9",
|
||||
"eslint-formatter-compact": "^9.0.1",
|
||||
"eslint-formatter-pretty": "^7.0.0",
|
||||
"prettier": "^3.6.2",
|
||||
"terser": "^5.44.0",
|
||||
|
||||
@@ -109,7 +109,6 @@ export class DocumentedClass extends DocumentedItem<Class | DeclarationReflectio
|
||||
signature.comment?.blockTags?.some((block) => block.tag === '@private' || block.tag === '@internal')
|
||||
? 'private'
|
||||
: undefined,
|
||||
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
||||
abstract: signature.comment?.blockTags?.some((block) => block.tag === '@abstract') || undefined,
|
||||
deprecated: signature.comment?.blockTags?.some((block) => block.tag === '@deprecated')
|
||||
? (signature.comment.blockTags
|
||||
|
||||
@@ -36,7 +36,6 @@ export class DocumentedMember extends DocumentedItem<DeclarationReflection | Mem
|
||||
? 'private'
|
||||
: undefined,
|
||||
readonly: data.flags.isReadonly,
|
||||
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
||||
abstract: signature.comment?.blockTags?.some((block) => block.tag === '@abstract') || undefined,
|
||||
deprecated: signature.comment?.blockTags?.some((block) => block.tag === '@deprecated')
|
||||
? (signature.comment.blockTags
|
||||
@@ -89,7 +88,6 @@ export class DocumentedMember extends DocumentedItem<DeclarationReflection | Mem
|
||||
? 'private'
|
||||
: undefined,
|
||||
readonly: base.readonly || !hasSetter,
|
||||
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
||||
abstract: getter.comment?.blockTags?.some((block) => block.tag === '@abstract') || undefined,
|
||||
deprecated: getter.comment?.blockTags?.some((block) => block.tag === '@deprecated')
|
||||
? (getter.comment.blockTags
|
||||
|
||||
@@ -43,7 +43,6 @@ export class DocumentedMethod extends DocumentedItem<DeclarationReflection | Met
|
||||
? 'private'
|
||||
: undefined,
|
||||
examples,
|
||||
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
||||
abstract: signature.comment?.blockTags?.some((block) => block.tag === '@abstract') || undefined,
|
||||
deprecated: signature.comment?.blockTags?.some((block) => block.tag === '@deprecated')
|
||||
? (signature.comment.blockTags
|
||||
|
||||
Reference in New Issue
Block a user