We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe96feb commit 0801598Copy full SHA for 0801598
build.ts
@@ -2,8 +2,7 @@ import { walk } from "https://deno.land/std@0.215.0/fs/walk.ts"
2
import { transpile } from "./src/transpile.ts"
3
4
for await (const entry of walk(".", { exts: ["ts"] })) {
5
- const src = await Deno.readTextFile(entry.path)
6
- const result = await transpile(src)
+ const result = await transpile(entry.path)
7
8
if (!result) throw new Error()
9
0 commit comments