You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Prefix command "${command}" was not found.\nNote: This warning is only shown in development mode as an alert to help you find the command. If you wish to remove this warning, set \`showUnknownPrefixCommandsWarning\` to \`false\` in your commandkit config.`,
440
+
);
441
+
}
442
+
returnnull;
443
+
}
451
444
452
445
if(
453
446
source.guildId&&
@@ -498,10 +491,7 @@ export class AppCommandHandler {
Copy file name to clipboardExpand all lines: packages/commandkit/src/cli/development.ts
+11-7Lines changed: 11 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -223,17 +223,21 @@ export async function bootstrapDevelopmentServer(configPath?: string) {
223
223
console.error(e);
224
224
});
225
225
226
-
ps=awaitbuildAndStart(cwd);
227
-
228
-
constend=performance.now();
229
-
230
-
console.log(
231
-
`${colors.greenBright('Development server started in')}${colors.yellowBright(`${(end-start).toFixed(2)}ms`)}
226
+
console.log(`${colors.greenBright('Bootstrapped CommandKit Development Environment in')}${colors.yellowBright(`${(performance.now()-start).toFixed(2)}ms`)}
232
227
${colors.greenBright('Watching for changes in')}${colors.yellowBright('src')}${colors.greenBright('directory')}
233
228
234
229
${colors.greenBright('Commands:')}
235
230
${colors.yellowBright('r')} - Restart the server
236
231
${colors.yellowBright('rc')} - Reload all commands
237
-
${colors.yellowBright('re')} - Reload all events`,
232
+
${colors.yellowBright('re')} - Reload all events`);
0 commit comments