Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Sep 29, 2024
1 parent f4e29d5 commit 63aaccc
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 66 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"prettier": "prettier \"{,!(node_modules)/**/}*.ts\" --config .prettierrc --write"
},
"devDependencies": {
"@types/node": "^22.5.5",
"nodemon": "^3.1.5",
"@types/node": "^22.7.4",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.55",
"@napi-rs/canvas": "^0.1.56",
"@octokit/rest": "^20.1.1",
"axios": "^1.7.7",
"cron": "^3.1.7",
"discord.js": "^14.16.2",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"gif-encoder-2": "^1.0.5",
"ts-node": "^10.9.2",
Expand Down
127 changes: 66 additions & 61 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/functions/submission/makeEmbed.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import settings from "@resources/settings.json";
import strings from "@resources/strings.json";
const DEBUG = process.env.DEBUG.toLowerCase() === "true";

import minecraftSorter from "@helpers/minecraftSorter";
import getPackByChannel from "@submission/utility/getPackByChannel";
Expand All @@ -20,6 +19,8 @@ import {
import { loadImage } from "@napi-rs/canvas";
import type { MinecraftEdition, Texture } from "@interfaces/database";

const DEBUG = process.env.DEBUG.toLowerCase() === "true";

export interface EmbedParams {
description?: string;
authors: string[];
Expand Down

0 comments on commit 63aaccc

Please sign in to comment.