From 84c38f34eeb2a6f9f6786aba0f5da5eb9efa422b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Sat, 25 Aug 2018 21:42:49 +0200 Subject: Prevent circular imports in ts code (#576) --- js/deno.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/deno.ts') diff --git a/js/deno.ts b/js/deno.ts index ff9939b1b..f7f6c521e 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -1,4 +1,4 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. // Public deno module. export { exit, readFileSync, writeFileSync } from "./os"; -export { libdeno } from "./globals"; +export { libdeno } from "./libdeno"; -- cgit v1.2.3