forked from denoland/deno_blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
33 lines (30 loc) · 1.11 KB
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2022 the Deno authors. All rights reserved. MIT license.
export { serveDir } from "https://deno.land/std@0.140.0/http/file_server.ts";
export { walk } from "https://deno.land/std@0.140.0/fs/walk.ts";
export {
dirname,
fromFileUrl,
join,
relative,
} from "https://deno.land/std@0.140.0/path/mod.ts";
export {
type ConnInfo,
serve,
} from "https://deno.land/std@0.140.0/http/mod.ts";
export * as gfm from "https://deno.land/x/gfm@0.1.20/mod.ts";
export {
Fragment,
h,
html,
type VNode,
} from "https://deno.land/x/htm@0.0.6/mod.tsx";
export { parse as frontMatter } from "https://deno.land/x/frontmatter@v0.1.4/mod.ts";
export {
createReporter,
type Reporter as GaReporter,
} from "https://deno.land/x/g_a@0.1.2/mod.ts";
export { default as callsites } from "https://raw.githubusercontent.com/kt3k/callsites/v1.0.0/mod.ts";
export { Feed, type Item as FeedItem } from "https://esm.sh/feed@4.2.2";
export { default as removeMarkdown } from "https://esm.sh/remove-markdown@0.5.0";
// Add syntax highlighting support for C by default
import "https://esm.sh/prismjs@1.27.0/components/prism-c?no-check";