Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit f9717aa

Browse files
committed
chore(deps): update dependencies to latest versions
1 parent 8840632 commit f9717aa

File tree

5 files changed

+116
-117
lines changed

5 files changed

+116
-117
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"type": "module",
2121
"dependencies": {
2222
"@prisma/client": "^5.10.2",
23-
"@sentry/node": "^7.104.0",
23+
"@sentry/node": "^7.105.0",
2424
"@tensorflow/tfjs-node": "^4.17.0",
2525
"@top-gg/sdk": "^3.1.6",
2626
"common-tags": "^1.8.2",
@@ -37,7 +37,7 @@
3737
"parse-duration": "^1.1.0",
3838
"sharp": "^0.33.2",
3939
"source-map-support": "^0.5.21",
40-
"winston": "^3.11.0"
40+
"winston": "^3.12.0"
4141
},
4242
"devDependencies": {
4343
"@stylistic/eslint-plugin": "^1.6.3",
@@ -46,7 +46,7 @@
4646
"@types/i18n": "^0.13.10",
4747
"@types/js-yaml": "^4.0.9",
4848
"@types/lodash": "^4.14.202",
49-
"@types/node": "^20.11.24",
49+
"@types/node": "^20.11.25",
5050
"@types/source-map-support": "^0.5.10",
5151
"cz-conventional-changelog": "^3.3.0",
5252
"eslint": "8.57.0",
@@ -56,8 +56,8 @@
5656
"prisma": "^5.10.2",
5757
"standard-version": "^9.5.0",
5858
"tsc-watch": "^6.0.4",
59-
"typescript": "^5.3.3",
60-
"typescript-eslint": "^7.1.0"
59+
"typescript": "^5.4.2",
60+
"typescript-eslint": "^7.1.1"
6161
},
6262
"config": {
6363
"commitizen": {

src/commands/slash/Main/connection.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ export default class Connection extends BaseCommand {
133133
components: [customizeMenu, buttons],
134134
});
135135

136-
// TODO Button expiration
137136
setComponentExpiry(
138137
interaction.client.getScheduler(),
139138
await interaction.fetchReply(),

src/commands/slash/Main/hub/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export default class Create extends Hub {
125125
const iconUrl = icon ? await checkAndFetchImgurUrl(icon) : undefined;
126126
const bannerUrl = banner ? await checkAndFetchImgurUrl(banner) : undefined;
127127

128-
// TODO create a gif showing how to get imgur links
128+
// TODO: create a gif showing how to get imgur links
129129
if (iconUrl === false || bannerUrl === false) {
130130
return await interaction.followUp({
131131
embeds: [

src/managers/NetworkManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ export default class NetworkManager {
396396
message.content = replaceLinks(message.content);
397397
}
398398

399-
// TODO allow multiple attachments when embeds can have multiple images
399+
// TODO: allow multiple attachments when embeds can have multiple images
400400
const attachment = message.attachments.first();
401401
const allowedTypes = ['image/gif', 'image/png', 'image/jpeg', 'image/jpg'];
402402

0 commit comments

Comments
 (0)