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 0a9bcd9 commit a1d8991Copy full SHA for a1d8991
src/index.ts
@@ -23,10 +23,10 @@ interface Props<T extends string> {
23
env: Record<string, T>;
24
}
25
26
-export async function bundler<T extends string>(props: Props<T>): Promise<{
+export function bundler<T extends string>(props: Props<T>): {
27
run: () => void;
28
createServer: (envList: Record<string, string>) => Promise<Server>;
29
-}> {
+} {
30
return {
31
run: () => {
32
buildCli({
0 commit comments