Skip to content

Commit

Permalink
fix: remove lockfile to fix publish (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Jun 5, 2023
1 parent 509a49a commit 8da9a54
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 25 deletions.
4 changes: 2 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 @@ -19,7 +19,7 @@ cfg-if = "1.0.0"
deno_ast = "0.27.0"
deno_graph = "0.49.0"
futures = "0.3.26"
import_map = "0.13.0"
import_map = "0.15.0"
lazy_static = "1.4.0"
regex = "1.6.0"
serde = { version = "1.0.140", features = ["derive"] }
Expand Down
19 changes: 0 additions & 19 deletions deno.lock

This file was deleted.

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.46.0/loader.ts";
import type { LoadResponse } from "https://deno.land/x/deno_graph@0.46.0/mod.ts";
import { load as defaultLoad } from "https://deno.land/x/deno_graph@0.49.0/loader.ts";
import type { LoadResponse } from "https://deno.land/x/deno_graph@0.49.0/mod.ts";

export 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.49.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 8da9a54

Please sign in to comment.