You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
662 B
22 lines
662 B
#!/usr/bin/env node
|
|
|
|
import fs from 'node:fs';
|
|
import { REST } from '@discordjs/rest';
|
|
import { Routes } from 'discord-api-types/v9';
|
|
import { clientId, token } from './helpers/env';
|
|
|
|
const commands : any[] = [];
|
|
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
|
|
|
|
for (const file of commandFiles) {
|
|
import(`./commands/${file}`)
|
|
.then(command => {
|
|
commands.push(command.data.toJSON());
|
|
});
|
|
}
|
|
|
|
const rest = new REST({ version: '9' }).setToken(token);
|
|
|
|
rest.put(Routes.applicationCommands(clientId), { body: commands })
|
|
.then(() => console.log('Successfully registered application commands.'))
|
|
.catch(console.error);
|
|
|