Skip to content

Commit 5b7efa8

Browse files
committed
chore: fix import path
1 parent a65c835 commit 5b7efa8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
import { mkdir, rename } from "fs/promises";
2-
import { cp } from "fs/promises";
3-
import { rm } from "fs/promises";
4-
import { join } from "path";
51
import bunfig from "./bunfig.toml";
62
import pkg from "./package.json";
3+
import { join } from "path";
4+
import { mkdir, rename, cp, rm } from "fs/promises";
75

86
await rm(bunfig.build.outdir, { recursive: true, force: true });
97
await mkdir(bunfig.build.outdir, { recursive: true });

0 commit comments

Comments
 (0)