Compare commits

...

11 commits

Author SHA1 Message Date
e4c37f9418 Upgrade winston
All checks were successful
Test / build (push) Successful in 47s
2025-06-04 18:28:47 +01:00
243889aec6 Upgrade minimatch 2025-06-04 18:28:15 +01:00
d7b8d7317b Upgrade fuse.js 2025-06-04 18:27:20 +01:00
1e5537263d Upgrade express 2025-06-04 18:26:40 +01:00
36589dab33 Upgrade dotenv 2025-06-04 18:25:58 +01:00
0cfb9d6322 Upgrade cron 2025-06-04 18:25:19 +01:00
a5a54bd291 Upgrade canvas 2025-06-04 18:24:33 +01:00
f94da4a86a Upgrade body-parser 2025-06-04 18:23:41 +01:00
16b4fd6c67 Upgrade axios 2025-06-04 18:22:47 +01:00
2e835e1a25 Upgrade dev dependencies 2025-06-04 18:18:33 +01:00
462c57c0c7 Upgrade discord.js 2025-06-04 18:17:20 +01:00
3 changed files with 903 additions and 808 deletions

View file

@ -30,35 +30,35 @@
"@types/express": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/uuid": "^10.0.0",
"axios": "^1.8.4",
"body-parser": "^1.20.2",
"canvas": "^2.11.2",
"axios": "^1.9.0",
"body-parser": "^2.2.0",
"canvas": "^3.1.0",
"clone-deep": "^4.0.1",
"cron": "^3.1.7",
"cron": "^4.3.1",
"discord.js": "^14.19.3",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"fuse.js": "^7.0.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"fuse.js": "^7.1.0",
"glob": "^11.0.2",
"jest": "^29.0.0",
"jest-mock-extended": "^4.0.0-beta1",
"jimp": "^1.6.0",
"minimatch": "9.0.5",
"minimatch": "10.0.1",
"mysql": "^2.18.1",
"ts-jest": "^29.3.4",
"typeorm": "0.3.20",
"winston": "^3.15.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"winston-discord-transport": "^1.3.0"
},
"resolutions": {},
"devDependencies": {
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"eslint": "^9.13.0",
"np": "^10.0.7",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"np": "^10.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0"
"typescript-eslint": "^8.33.1"
}
}

View file

@ -82,7 +82,7 @@ describe("UseConfirm", () => {
// Arrange
interaction.customId += " unclaimed";
interaction.user.id = "userId";
interaction.update.mockImplementation(async (opts: string | MessagePayload | InteractionUpdateOptions) => {
(interaction.update as jest.Mock).mockImplementation(async (opts: string | MessagePayload | InteractionUpdateOptions) => {
updatedWith = opts;
return mock<InteractionResponse<boolean>>();
@ -133,7 +133,7 @@ describe("UseCancel", () => {
// Arrange
interaction.customId += " unclaimed";
interaction.user.id = "userId";
interaction.update.mockImplementation(async (opts: string | MessagePayload | InteractionUpdateOptions) => {
(interaction.update as jest.Mock).mockImplementation(async (opts: string | MessagePayload | InteractionUpdateOptions) => {
updatedWith = opts;
return mock<InteractionResponse<boolean>>();

1677
yarn.lock

File diff suppressed because it is too large Load diff