/[sudobot]/trunk/deploy-commands.js
ViewVC logotype

Diff of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/deploy-commands.ts revision 56 by rakin, Mon Jul 29 17:28:24 2024 UTC trunk/deploy-commands.js revision 57 by rakin, Mon Jul 29 17:28:25 2024 UTC
# Line 1  Line 1 
1  #!/bin/ts-node  #!/bin/node
2    
3  import { SlashCommandBuilder } from '@discordjs/builders';  const { SlashCommandBuilder } = require('@discordjs/builders');
4  import { REST } from '@discordjs/rest';  const { REST } = require('@discordjs/rest');
5  import { Routes } from 'discord-api-types/v9';  const { Routes } = require('discord-api-types/v9');
6  import { config } from 'dotenv';  const { config } = require('dotenv');
7  import { existsSync } from 'fs';  const { existsSync } = require('fs');
8  import path from 'path';  const path = require('path');
9    
10  if (existsSync(path.join(__dirname, '.env'))) {  if (existsSync(path.join(__dirname, '.env'))) {
11      config();      config();
# Line 214  const commands = [ Line 214  const commands = [
214          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
215  ].map(command => command.toJSON());  ].map(command => command.toJSON());
216    
217  const rest = new REST({ version: '9' }).setToken(TOKEN!);  const rest = new REST({ version: '9' }).setToken(TOKEN);
218    
219  rest.put(Routes.applicationGuildCommands(CLIENT_ID!, GUILD_ID!), { body: commands })  rest.put(Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID), { body: commands })
220      .then(() => console.log('Successfully registered application commands.'))      .then(() => console.log('Successfully registered application commands.'))
221      .catch(console.error);      .catch(console.error);

Legend:
Removed from v.56  
changed lines
  Added in v.57

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26