Skip to content

Commit 63aaccc

Browse files
committed
update dependencies
1 parent f4e29d5 commit 63aaccc

File tree

3 files changed

+72
-66
lines changed

3 files changed

+72
-66
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"prettier": "prettier \"{,!(node_modules)/**/}*.ts\" --config .prettierrc --write"
1010
},
1111
"devDependencies": {
12-
"@types/node": "^22.5.5",
13-
"nodemon": "^3.1.5",
12+
"@types/node": "^22.7.4",
13+
"nodemon": "^3.1.7",
1414
"prettier": "^3.3.3"
1515
},
1616
"dependencies": {
17-
"@napi-rs/canvas": "^0.1.55",
17+
"@napi-rs/canvas": "^0.1.56",
1818
"@octokit/rest": "^20.1.1",
1919
"axios": "^1.7.7",
2020
"cron": "^3.1.7",
21-
"discord.js": "^14.16.2",
21+
"discord.js": "^14.16.3",
2222
"dotenv": "^16.4.5",
2323
"gif-encoder-2": "^1.0.5",
2424
"ts-node": "^10.9.2",

pnpm-lock.yaml

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

src/functions/submission/makeEmbed.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import settings from "@resources/settings.json";
22
import strings from "@resources/strings.json";
3-
const DEBUG = process.env.DEBUG.toLowerCase() === "true";
43

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

22+
const DEBUG = process.env.DEBUG.toLowerCase() === "true";
23+
2324
export interface EmbedParams {
2425
description?: string;
2526
authors: string[];

0 commit comments

Comments
 (0)