import assert from 'node:assert'; import { DEV_SERVER_ID, DEVELOPMENT } from '../../config.js'; import { bot } from '../bot.js'; export async function updateCommands(): Promise { bot.logger.info('Updating commands'); const userCommands = bot.commands.filter((x) => !x.devOnly).array(); await bot.helpers.upsertGlobalApplicationCommands(userCommands); if (DEVELOPMENT) { assert(DEV_SERVER_ID, 'The DEV_SERVER_ID environment is missing'); bot.logger.info('Updating developer commands'); const devCommands = bot.commands.filter((x) => x.devOnly ?? false).array(); await bot.helpers.upsertGuildApplicationCommands(DEV_SERVER_ID, devCommands); } }