Skip to content

Commit 7b43fdc

Browse files
committed
patch
1 parent fe9b9d8 commit 7b43fdc

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

apps/test-bot/commandkit.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @ts-check
22

3-
import { defineConfig } from '../dist/index.mjs';
3+
import { defineConfig } from 'commandkit';
44

55
export default defineConfig({
66
main: 'index.mjs',

packages/commandkit/src/CommandKit.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
import type { CommandKitData, CommandKitOptions, ReloadOptions } from './types';
2-
import type { CommandObject } from './types';
1+
import type {
2+
CommandKitData,
3+
CommandKitOptions,
4+
ReloadOptions,
5+
CommandObject,
6+
} from './types';
37
import { CommandHandler, EventHandler, ValidationHandler } from './handlers';
48
import colors from './utils/colors';
59

0 commit comments

Comments
 (0)