Skip to content

Commit

Permalink
feat: upgrade deno_graph to 0.46 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Apr 6, 2023
1 parent 6566aa9 commit 783ce7f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
17 changes: 15 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name = "ddoc"
anyhow = { version = "1.0.58", optional = true }
cfg-if = "1.0.0"
deno_ast = "0.25.0"
deno_graph = "0.45.0"
deno_graph = "0.46.0"
futures = "0.3.26"
js-sys = { version = "=0.3.61", optional = true }
import_map = "0.13.0"
Expand Down
10 changes: 5 additions & 5 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions js/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

import { instantiate } from "./deno_doc.generated.js";
import type { DocNode } from "./types.d.ts";
import { load as defaultLoad } from "https://deno.land/x/deno_graph@0.45.0/lib/loader.ts";
import type { LoadResponse } from "https://deno.land/x/deno_graph@0.45.0/mod.ts";
import { load as defaultLoad } from "https://deno.land/x/deno_graph@0.46.0/loader.ts";
import type { LoadResponse } from "https://deno.land/x/deno_graph@0.46.0/mod.ts";

export type { LoadResponse } from "https://deno.land/x/deno_graph@0.45.0/mod.ts";
export type { LoadResponse } from "https://deno.land/x/deno_graph@0.46.0/mod.ts";

export interface DocOptions {
/** An optional URL string which provides a location of an import map to be
Expand Down

0 comments on commit 783ce7f

Please sign in to comment.