Skip to content

Commit 0801598

Browse files
committed
i think it works
1 parent fe96feb commit 0801598

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import { walk } from "https://deno.land/std@0.215.0/fs/walk.ts"
22
import { transpile } from "./src/transpile.ts"
33

44
for await (const entry of walk(".", { exts: ["ts"] })) {
5-
const src = await Deno.readTextFile(entry.path)
6-
const result = await transpile(src)
5+
const result = await transpile(entry.path)
76

87
if (!result) throw new Error()
98

0 commit comments

Comments
 (0)