We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 650861f commit 59202cfCopy full SHA for 59202cf
packages/commandkit/src/app/router/EventsRouter.ts
@@ -151,7 +151,7 @@ export class EventsRouter {
151
const namespace = isNamespace ? event.slice(1, -1) : (_namespace ?? null);
152
153
for (const file of files) {
154
- if (file.name.includes('_')) continue;
+ if (file.name.startsWith('_')) continue;
155
156
if (file.isDirectory()) {
157
const nextPath = join(path, file.name);
packages/commandkit/src/logger/Logger.ts
@@ -1,5 +1,5 @@
1
import { DefaultLogger } from './DefaultLogger';
2
-import { ILogger } from './ILogger';
+import type { ILogger } from './ILogger';
3
4
export interface CommandKitLoggerOptions {
5
/**
0 commit comments