Skip to content

Commit cf4a36b

Browse files
renovate[bot]potb
andcommittedFeb 17, 2024·
chore(deps): update all dependencies
Co-authored-by: Peïo Thibault <peio.thibault@gmail.com>
1 parent 3673f7d commit cf4a36b

File tree

9 files changed

+687
-897
lines changed

9 files changed

+687
-897
lines changed
 

‎.github/workflows/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: docker/setup-buildx-action@v3
4040

4141
- name: Login to Heroku
42-
uses: akhileshns/heroku-deploy@v3.12.14
42+
uses: akhileshns/heroku-deploy@v3.13.15
4343
with:
4444
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
4545
heroku_app_name: ''

‎.github/workflows/integration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: docker/setup-buildx-action@v3
3939

4040
- name: Setup pnpm
41-
uses: pnpm/action-setup@v2.4.0
41+
uses: pnpm/action-setup@v3.0.0
4242

4343
- name: Setup Node
4444
uses: actions/setup-node@v4

‎.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
21.1.0
1+
21.6.2

‎Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:21.1.0-alpine as base
1+
FROM node:21.6.2-alpine as base
22

33
WORKDIR /app
44

@@ -28,7 +28,7 @@ RUN pnpm prune --prod && \
2828
pnpm install --production --frozen-lockfile --offline && \
2929
pnpm store prune
3030

31-
FROM node:21.1.0-alpine as application
31+
FROM node:21.6.2-alpine as application
3232

3333
WORKDIR /app
3434

‎docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ volumes:
55

66
services:
77
redis:
8-
image: redis:7.2.2-alpine
8+
image: redis:7.2.4-alpine
99
ports:
1010
- '6379:6379'
1111
volumes:

‎package.json

+21-21
Original file line numberDiff line numberDiff line change
@@ -15,37 +15,37 @@
1515
"check": "run-s check:*"
1616
},
1717
"dependencies": {
18-
"@keyv/redis": "2.8.0",
18+
"@keyv/redis": "2.8.4",
1919
"cheerio": "1.0.0-rc.12",
2020
"constant-case": "3.0.4",
21-
"cron": "3.1.5",
22-
"discord.js": "14.13.0",
21+
"cron": "3.1.6",
22+
"discord.js": "14.14.1",
2323
"keyv": "4.5.4",
24-
"open-graph-scraper": "6.3.2",
24+
"open-graph-scraper": "6.4.0",
2525
"param-case": "3.0.4",
2626
"zod": "3.22.4"
2727
},
2828
"devDependencies": {
29-
"@types/node": "20.8.9",
30-
"@typescript-eslint/eslint-plugin": "6.9.0",
31-
"@typescript-eslint/parser": "6.9.0",
32-
"dotenv": "16.3.1",
33-
"eslint": "8.52.0",
29+
"@types/node": "20.11.19",
30+
"@typescript-eslint/eslint-plugin": "7.0.1",
31+
"@typescript-eslint/parser": "7.0.1",
32+
"dotenv": "16.4.4",
33+
"eslint": "8.56.0",
3434
"eslint-import-resolver-typescript": "3.6.1",
35-
"eslint-plugin-import": "2.29.0",
35+
"eslint-plugin-import": "2.29.1",
3636
"eslint-plugin-only-error": "1.0.2",
37-
"eslint-plugin-simple-import-sort": "10.0.0",
38-
"eslint-plugin-sonarjs": "0.21.0",
39-
"eslint-plugin-unused-imports": "3.0.0",
40-
"npm-run-all": "4.1.5",
41-
"prettier": "3.0.3",
42-
"tsup": "7.2.0",
43-
"type-fest": "4.6.0",
44-
"typescript": "5.2.2",
45-
"vitest": "0.34.6"
37+
"eslint-plugin-simple-import-sort": "12.0.0",
38+
"eslint-plugin-sonarjs": "0.24.0",
39+
"eslint-plugin-unused-imports": "3.1.0",
40+
"npm-run-all2": "6.1.2",
41+
"prettier": "3.2.5",
42+
"tsup": "8.0.2",
43+
"type-fest": "4.10.2",
44+
"typescript": "5.3.3",
45+
"vitest": "1.3.0"
4646
},
47-
"packageManager": "pnpm@8.10.0",
47+
"packageManager": "pnpm@8.15.3",
4848
"engines": {
49-
"node": "21.1.0"
49+
"node": "21.6.2"
5050
}
5151
}

‎pnpm-lock.yaml

+656-866
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/main.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const client = new Client({
2929
await client.login(env.discordToken);
3030

3131
await new Promise<void>((resolve) => {
32-
client.on('ready', () => {
33-
createdModules.map((module) => module.eventHandlers?.ready?.(client));
32+
client.on('ready', (client) => {
33+
void createdModules.map((module) => module.eventHandlers?.ready?.(client));
3434
resolve();
3535
});
3636
});

‎src/modules/recurringMessage/recurringMessage.helpers.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ export const listRecurringMessages = async (interaction: ChatInputCommandInterac
125125
return;
126126
}
127127

128-
const messagesInCurrentGuild = recurringMessages.filter(
129-
({ channelId }) => interaction.guild?.channels.cache.has(channelId),
128+
const messagesInCurrentGuild = recurringMessages.filter(({ channelId }) =>
129+
interaction.guild?.channels.cache.has(channelId),
130130
);
131131

132132
const messagesByChannelName = messagesInCurrentGuild.reduce<

0 commit comments

Comments
 (0)
Please sign in to comment.