From 058695415ef2539ade38d26440046c70a1e54f69 Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Sat, 3 May 2025 21:07:06 -0400 Subject: [PATCH] change export order to match import order --- src/commands/_index.ts | 30 +++++++++++++++--------------- src/commands/apiCmd/_index.ts | 4 ++-- src/commands/auditCmd/_index.ts | 2 +- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/commands/_index.ts b/src/commands/_index.ts index 3356728..0171444 100644 --- a/src/commands/_index.ts +++ b/src/commands/_index.ts @@ -18,22 +18,22 @@ import { stats } from 'commands/stats.ts'; import { version } from 'commands/version.ts'; export default { - ping, - rip, - rollHelp, - rollDecorators, + api, + audit, + emoji, + handleMentions, + heatmap, help, info, - privacy, - version, - report, - stats, - api, - emoji, - roll, - handleMentions, - audit, - heatmap, - optOut, optIn, + optOut, + ping, + privacy, + rip, + report, + roll, + rollDecorators, + rollHelp, + stats, + version, }; diff --git a/src/commands/apiCmd/_index.ts b/src/commands/apiCmd/_index.ts index ebec13c..6e6ff3b 100644 --- a/src/commands/apiCmd/_index.ts +++ b/src/commands/apiCmd/_index.ts @@ -5,9 +5,9 @@ import { showHideWarn } from 'commands/apiCmd/showHideWarn.ts'; import { status } from 'commands/apiCmd/status.ts'; export default { - help, allowBlock, + help, deleteGuild, - status, showHideWarn, + status, }; diff --git a/src/commands/auditCmd/_index.ts b/src/commands/auditCmd/_index.ts index 7b23c1f..e79c97e 100644 --- a/src/commands/auditCmd/_index.ts +++ b/src/commands/auditCmd/_index.ts @@ -3,7 +3,7 @@ import { auditGuilds } from 'commands/auditCmd/auditGuilds.ts'; import { auditHelp } from 'commands/auditCmd/auditHelp.ts'; export default { - auditHelp, auditDB, auditGuilds, + auditHelp, };