Skip to content

Commit ef52bc9

Browse files
authoredNov 12, 2021
fix: make cac work on Deno 1.16 (#130)
1 parent 5e07a98 commit ef52bc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎scripts/build-deno.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function node2deno(options: { types: typeof Types }): PluginObj {
1818
}
1919
source.value += '.ts'
2020
} else if (source.value === 'events') {
21-
source.value = `https://deno.land/std@0.80.0/node/events.ts`
21+
source.value = `https://deno.land/std@0.114.0/node/events.ts`
2222
} else if (source.value === 'mri') {
2323
source.value = `https://cdn.skypack.dev/mri`
2424
}

0 commit comments

Comments
 (0)
Please sign in to comment.