Skip to content

Commit

Permalink
fix typo and update for memory issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonded committed Aug 8, 2024
1 parent ea649bc commit 86bd881
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"commands": "node --no-warnings --import=tsx --env-file=.env src/scripts/deploy",
"dev": "node --no-warnings --import=tsx --env-file=.env --watch src/index.ts",
"prisma": "prisma migrate deploy",
"prod": "prisma migrate deploy & node --no-warnings --import=tsx --env-file=.env src/index.ts"
"prod": "prisma migrate deploy & node --max-old-space-size=8192 --import=tsx --env-file=.env src/index.ts"
},
"author": "Sebastian 'Moonded' Danielzik",
"license": "ISC",
Expand All @@ -29,7 +29,7 @@
"@types/node": "^20.10.5"
},
"engines": {
"node": ">=20.6.0",
"pnpm": ">=8.9.0"
"node": ">=22.6.0",
"pnpm": ">=8.15.9"
}
}
2 changes: 1 addition & 1 deletion src/events/util/guildJoin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { event } from "utils";
export default event("guildCreate", async ({ log }, Guild) => {
log(`Joind Guild: ${Guild.id}`);
log(`Joined Guild: ${Guild.id}`);
});

0 comments on commit 86bd881

Please sign in to comment.