forked from denoland/deno_blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
// Copyright 2022 the Deno authors. All rights reserved. MIT license. | ||
|
||
export { serveDir } from "https://deno.land/std@0.153.0/http/file_server.ts"; | ||
export { walk } from "https://deno.land/std@0.153.0/fs/walk.ts"; | ||
export { serveDir } from "https://deno.land/std@0.171.0/http/file_server.ts"; | ||
export { walk } from "https://deno.land/std@0.171.0/fs/walk.ts"; | ||
export { | ||
dirname, | ||
fromFileUrl, | ||
join, | ||
relative, | ||
} from "https://deno.land/std@0.153.0/path/mod.ts"; | ||
} from "https://deno.land/std@0.171.0/path/mod.ts"; | ||
export { | ||
type ConnInfo, | ||
serve, | ||
} from "https://deno.land/std@0.153.0/http/mod.ts"; | ||
export { extract as frontMatter } from "https://deno.land/std@0.153.0/encoding/front_matter.ts"; | ||
} from "https://deno.land/std@0.171.0/http/mod.ts"; | ||
export { extract as frontMatter } from "https://deno.land/std@0.171.0/encoding/front_matter.ts"; | ||
|
||
export * as gfm from "https://deno.land/x/[email protected].22/mod.ts"; | ||
export * as gfm from "https://deno.land/x/[email protected].27/mod.ts"; | ||
export { | ||
Fragment, | ||
h, | ||
|
@@ -32,7 +32,7 @@ export { Feed, type Item as FeedItem } from "https://esm.sh/[email protected]"; | |
export { default as removeMarkdown } from "https://esm.sh/[email protected]"; | ||
|
||
// Add syntax highlighting support for C by default | ||
import "https://esm.sh/prismjs@1.28.0/components/prism-c?no-check"; | ||
import "https://esm.sh/prismjs@1.29.0/components/prism-c?no-check"; | ||
|
||
export { UnoCSS }; | ||
export type UnoConfig = typeof UnoCSS extends ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters