Skip to content

Commit a1d8991

Browse files
committed
fix: lint
Signed-off-by: sunrabbit123 <[email protected]>
1 parent 0a9bcd9 commit a1d8991

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ interface Props<T extends string> {
2323
env: Record<string, T>;
2424
}
2525

26-
export async function bundler<T extends string>(props: Props<T>): Promise<{
26+
export function bundler<T extends string>(props: Props<T>): {
2727
run: () => void;
2828
createServer: (envList: Record<string, string>) => Promise<Server>;
29-
}> {
29+
} {
3030
return {
3131
run: () => {
3232
buildCli({

0 commit comments

Comments
 (0)