We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5a7679 commit 1a6884cCopy full SHA for 1a6884c
packages/commandkit/src/flags/feature-flags.ts
@@ -8,13 +8,11 @@ import {
8
Client,
9
ClientEvents,
10
ContextMenuCommandInteraction,
11
- Events,
12
Guild,
13
Message,
14
TextBasedChannel,
15
} from 'discord.js';
16
import { LoadedCommand } from '../app';
17
-import { FlagStore } from './store';
18
19
export type MaybePromise<T> = T | Promise<T>;
20
packages/commandkit/src/plugins/plugin-runtime/CompilerPluginRuntime.ts
@@ -37,7 +37,6 @@ export class CompilerPluginRuntime {
37
}
38
} catch (e: any) {
39
const err = e instanceof Error ? e : new Error(e);
40
- console.log(err);
41
throw new Error(
42
`Plugin ${plugin.name} failed to transform: ${err.message}`,
43
);
0 commit comments