Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vecnz/VerifyBot
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0301285bfdbc869875b85e74b5914b5c5e7e6c94
Choose a base ref
..
head repository: vecnz/VerifyBot
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 59abd0d95a69b038a26379530d61ea885b507934
Choose a head ref
Showing with 297 additions and 141 deletions.
  1. +1 −1 .github/CODEOWNERS
  2. +9 −9 package.json
  3. +287 −131 yarn.lock
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @Darkflame72

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@
"#root/*": "./dist/*.js"
},
"dependencies": {
"@prisma/client": "4.12.0",
"@prisma/client": "4.13.0",
"@sapphire/decorators": "^6.0.0",
"@sapphire/discord-utilities": "^3.0.0",
"@sapphire/discord.js-utilities": "^6.0.0",
@@ -48,18 +48,18 @@
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@sapphire/eslint-config": "4.4.1",
"@sapphire/prettier-config": "1.4.5",
"@sapphire/ts-config": "3.3.4",
"@swc/core": "1.3.49",
"@swc/core": "1.3.53",
"@types/eslint": "8.37.0",
"@types/node": "18.15.11",
"@types/node": "18.15.13",
"@types/nodemailer": "6.4.7",
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
@@ -69,11 +69,11 @@
"pinst": "3.0.0",
"prettier": "2.8.7",
"pretty-quick": "3.1.3",
"prisma": "4.12.0",
"prisma": "4.13.0",
"ts-node": "10.9.1",
"tsc-watch": "6.0.0",
"tsup": "6.7.0",
"typescript": "5.0.4"
"typescript": "5.1.3"
},
"commitlint": {
"extends": [
Loading