Skip to content

Commit

Permalink
chore: update config files, remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
laquasicinque committed Aug 30, 2024
1 parent 7f8d1ef commit c7c57d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.18.1
20.12.2
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.18.1-slim AS deps
FROM node:20.12.2-slim AS deps

WORKDIR /app

Expand All @@ -10,7 +10,7 @@ COPY src ./src
RUN yarn install --frozen-lockfile
RUN npm run build

FROM node:16.18.1-slim
FROM node:20.12.2-slim

WORKDIR /app

Expand Down
1 change: 0 additions & 1 deletion src/v2/commands/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ export const registerCommands = async (client: Client): Promise<void> => {
});
}
} catch (error) {
console.error(error);
await interaction.reply({
ephemeral: true,
content: 'Something went wrong when trying to execute the command',
Expand Down

0 comments on commit c7c57d1

Please sign in to comment.