From 63b8089bda8c88413bfad24aef415abc09e8d5c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20D=C3=BCrr?= <102963075+cd-work@users.noreply.github.com> Date: Fri, 2 Sep 2022 20:53:23 +0000 Subject: refactor: move JsError formatting to deno_runtime (#15345) This takes the existing `fmt_error` module from cli and puts it as a public module into `deno_runtime`. --- runtime/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/lib.rs') diff --git a/runtime/lib.rs b/runtime/lib.rs index dfbfaafaa..656662391 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -19,6 +19,7 @@ pub use deno_webstorage; pub mod colors; pub mod errors; +pub mod fmt_errors; pub mod fs_util; pub mod inspector_server; pub mod js; -- cgit v1.2.3