Skip to content

Commit

Permalink
fix: make deps vendorable and pin esm.sh deps (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Dec 19, 2023
1 parent 4ffdf5f commit a064357
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@

export { emojify } from "https://deno.land/x/[email protected]/mod.ts";

export * as Marked from "https://esm.sh/[email protected]/";
export * as Marked from "https://esm.sh/[email protected]?pin=v135";

export { default as GitHubSlugger } from "https://esm.sh/[email protected]/";
export { default as GitHubSlugger } from "https://esm.sh/[email protected]?pin=v135";

export { gfmHeadingId } from "https://esm.sh/[email protected]/";
export { gfmHeadingId } from "https://esm.sh/[email protected]?pin=v135";

export { default as Prism } from "https://esm.sh/[email protected]";
export { default as Prism } from "https://esm.sh/[email protected]?pin=v135";

export { default as sanitizeHtml } from "https://esm.sh/[email protected]?target=esnext";
export { default as sanitizeHtml } from "https://esm.sh/[email protected]?target=esnext&pin=v135";

export { escape as htmlEscape } from "https://esm.sh/[email protected]";
export { escape as htmlEscape } from "https://esm.sh/[email protected]?pin=v135";

export { default as katex } from "https://esm.sh/[email protected]/dist/katex.mjs";
export { default as katex } from "https://esm.sh/[email protected]/dist/katex.mjs?pin=v135";

0 comments on commit a064357

Please sign in to comment.