From ef52bc9c967550c19c43f53b623a4dff95741eed Mon Sep 17 00:00:00 2001 From: GP Date: Fri, 12 Nov 2021 07:02:28 +0530 Subject: [PATCH] fix: make cac work on Deno 1.16 (#130) --- scripts/build-deno.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-deno.ts b/scripts/build-deno.ts index 6bd8928..f26c791 100644 --- a/scripts/build-deno.ts +++ b/scripts/build-deno.ts @@ -18,7 +18,7 @@ function node2deno(options: { types: typeof Types }): PluginObj { } source.value += '.ts' } else if (source.value === 'events') { - source.value = `https://deno.land/std@0.80.0/node/events.ts` + source.value = `https://deno.land/std@0.114.0/node/events.ts` } else if (source.value === 'mri') { source.value = `https://cdn.skypack.dev/mri` }