-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.js
62 lines (53 loc) · 1.38 KB
/
deploy.js
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const fs = require('fs');
const { REST } = require('@discordjs/rest');
const { Routes } = require('discord-api-types/v10');
const dotenv = require('dotenv').config();
const staging = process.argv.includes('--staging');
const reset = process.argv.includes('--reset');
const commands = [];
const commandFiles = fs.readdirSync('./commands').filter((file) => file.endsWith('.js'));
if (!reset) {
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
commands.push(command.data.toJSON());
}
}
const rest = new REST({ version: '9' }).setToken(process.env.token);
(async () => {
try {
if (!reset) {
if (staging) {
await rest.put
(
Routes.applicationGuildCommands(process.env.clientId, process.env.guildId),
{ body: commands },
);
console.log('Successfully registered staging commands.');
}
else {
await rest.put
(
Routes.applicationCommands(process.env.clientId),
{ body: commands },
);
console.log('Successfully registered global commands.');
}
}
else {
await rest.put
(
Routes.applicationGuildCommands(process.env.clientId, process.env.guildId),
{ body: commands },
);
await rest.put
(
Routes.applicationCommands(process.env.clientId),
{ body: commands },
);
console.log('Successfully reset all commands.');
}
}
catch (error) {
console.error(error);
}
})();