blob: 64e57453993d0d1543c6f891ee6d5bbb94c01ded (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import { BushCommand } from '../../lib/extensions/BushCommand';
import { stripIndent } from 'common-tags';
import { Message } from 'discord.js';
import { CommandInteraction } from 'discord.js';
export default class ReloadCommand extends BushCommand {
constructor() {
super('reload', {
aliases: ['reload'],
category: 'dev',
description: {
content: 'Reloads the bot',
usage: 'reload',
examples: ['reload']
},
ownerOnly: true,
typing: true
});
}
private async getResponse(): Promise<string> {
try {
await this.client.util.shell('yarn rimraf dist/');
await this.client.util.shell('yarn tsc');
this.client.commandHandler.reloadAll();
this.client.listenerHandler.reloadAll();
this.client.inhibitorHandler.reloadAll();
return '🔁 Successfully reloaded!';
} catch (e) {
return stripIndent`
An error occured while reloading:
${await this.client.util.haste(e.stack)}
`;
}
}
public async exec(message: Message): Promise<void> {
await message.util.send(await this.getResponse());
}
public async execSlash(message: CommandInteraction): Promise<void> {
await message.reply(await this.getResponse());
}
}
|