forked from muncheruniverse/munch-cord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy-commands.js
43 lines (37 loc) · 1.64 KB
/
deploy-commands.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
const { REST, Routes } = require('discord.js')
const fs = require('node:fs')
const path = require('node:path')
require('dotenv-flow').config()
const commands = []
// Find all files in the commands directory that end in .js
const commandsPath = path.join(__dirname, 'commands')
const commandFilePaths = []
fs.readdirSync(commandsPath).forEach((dirName) => {
fs.readdirSync(path.join(commandsPath, dirName)).forEach((file) => {
if (file.endsWith('.js') && !file.endsWith('.test.js')) {
commandFilePaths.push(path.join(commandsPath, dirName, file))
}
})
})
// Grab the SlashCommandBuilder#toJSON() output of each command's data for deployment
for (const filePath of commandFilePaths) {
const command = require(filePath)
commands.push(command.data.toJSON())
}
// Construct and prepare an instance of the REST module, and deploy the commands
const rest = new REST({ version: '10' }).setToken(process.env.TOKEN)
// The put method is used to fully refresh all commands in the guild with the current set
;(async () => {
try {
console.log(`Started refreshing ${commands.length} application (/) commands.`)
const registeredCommand = await rest.get(Routes.applicationCommands(process.env.APPLICATION_ID))
for (const command of registeredCommand) {
await rest.delete(Routes.applicationCommand(process.env.APPLICATION_ID, command.id))
}
const data = await rest.put(Routes.applicationCommands(process.env.APPLICATION_ID), { body: commands })
console.log(`Successfully reloaded ${data.length} application (/) commands.`)
} catch (error) {
// And of course, make sure you catch and log any errors
console.error(error)
}
})()