Skip to content

Commit c2e9a29

Browse files
committed
feat: add bundle and compile command
1 parent 51c234b commit c2e9a29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cli/bundle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export async function bundle(
3636
);
3737

3838
const bundleResult = await Deno.emit(tmpFile, {
39-
bundle: "esm",
39+
bundle: "module",
4040
check: false,
4141
});
4242

@@ -61,7 +61,7 @@ export async function prepareBundle(
6161
}
6262

6363
const scriptResult = await Deno.emit(script, {
64-
bundle: "esm",
64+
bundle: "module",
6565
check: true,
6666
...options,
6767
});

0 commit comments

Comments
 (0)