import { graph } from "https://deno.land/x/cav@0.2.3/deps.ts";
const { ModuleGraph } = graph;
Provides a string output representation of the module graph similar to
deno info
with or without ANSI color escape sequences. If noColor
is
expressly true
, the string will be returned without color escape
sequences. If noColor
is expressly false
the returned string will
include ANSI color escape sequences. If not expressly set, Deno.noColor
will be used, or if the Deno
namespace isn't present, will default to
true
and not provide ANSI color escape sequences.