Browse Source

Remove backup TS file for deploying commands

pull/41/head
Abheek Dhawan 3 years ago
parent
commit
575ceda112
Signed by: abheekd GPG Key ID: 7BE81B8C14475B67
  1. 22
      src/deploy-commands.ts.bak

22
src/deploy-commands.ts.bak

@ -1,22 +0,0 @@
#!/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);
Loading…
Cancel
Save