Skip to content

Commit

Permalink
chore: updates
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfrangu committed Dec 9, 2023
1 parent ff5ac03 commit 7f81597
Show file tree
Hide file tree
Showing 3 changed files with 575 additions and 740 deletions.
37 changes: 18 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,44 +27,43 @@
"dependencies": {
"@discordjs/builders": "^1.7.0",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@prisma/client": "^5.6.0",
"@sapphire/decorators": "^6.0.2",
"@sapphire/discord.js-utilities": "^7.1.2",
"@sapphire/framework": "^4.8.2",
"@sapphire/plugin-logger": "^3.0.7",
"@sapphire/plugin-subcommands": "^5.1.0",
"@sapphire/stopwatch": "^1.5.0",
"@sapphire/time-utilities": "^1.7.10",
"@sapphire/type": "^2.4.1",
"@sapphire/utilities": "^3.13.0",
"@prisma/client": "^5.7.0",
"@sapphire/decorators": "^6.0.3",
"@sapphire/discord.js-utilities": "^7.1.3",
"@sapphire/framework": "^5.0.4",
"@sapphire/plugin-logger": "^4.0.1",
"@sapphire/plugin-subcommands": "^6.0.1",
"@sapphire/stopwatch": "^1.5.1",
"@sapphire/time-utilities": "^1.7.11",
"@sapphire/utilities": "^3.14.0",
"@skyra/env-utilities": "^1.2.1",
"@skyra/jaro-winkler": "^1.1.0",
"bufferutil": "^4.0.8",
"colorette": "^2.0.20",
"confusables": "^1.1.1",
"discord-api-types": "^0.37.65",
"discord-api-types": "^0.37.66",
"discord.js": "^14.14.1",
"re2": "^1.20.9",
"tslib": "^2.6.2",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.2",
"@sapphire/eslint-config": "^5.0.3",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@types/node": "^20.10.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitest/coverage-c8": "^0.33.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"prisma": "^5.6.0",
"prisma": "^5.7.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"author": {
"name": "Vlad Frangu",
Expand Down
8 changes: 6 additions & 2 deletions src/commands/Highlight/server-ignore-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,12 @@ export class BlockCommand extends Subcommand {
)
.addUserOption((user) => user.setName('user').setDescription('The user to stop ignoring')),
)
.addSubcommand(input)
.addSubcommand(input),
.addSubcommand((list) =>
list
.setName('list')
.setDescription('Lists all channels and users that you are ignoring from this server'),
)
.addSubcommand((clear) => clear.setName('clear').setDescription('Clears your server ignore list')),
);

registry.registerContextMenuCommand((ignoreUser) =>
Expand Down
Loading

0 comments on commit 7f81597

Please sign in to comment.