From 575ceda11215aba122f3450cd58b11f78371d30c Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Wed, 30 Mar 2022 08:16:44 -0500 Subject: [PATCH] Remove backup TS file for deploying commands --- src/deploy-commands.ts.bak | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 src/deploy-commands.ts.bak diff --git a/src/deploy-commands.ts.bak b/src/deploy-commands.ts.bak deleted file mode 100755 index 359ac5c..0000000 --- a/src/deploy-commands.ts.bak +++ /dev/null @@ -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);