Skip to content

Commit

Permalink
chore: update deps (denoland#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
rojvv authored Jan 14, 2023
1 parent ac18ab4 commit 2ae65df
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions blog_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import {
assert,
assertEquals,
assertStringIncludes,
} from "https://deno.land/std@0.153.0/testing/asserts.ts";
import { fromFileUrl, join } from "https://deno.land/std@0.153.0/path/mod.ts";
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
import { fromFileUrl, join } from "https://deno.land/std@0.171.0/path/mod.ts";

const BLOG_URL = new URL("./testdata/main.js", import.meta.url).href;
const TESTDATA_PATH = fromFileUrl(new URL("./testdata/", import.meta.url));
Expand Down
1 change: 1 addition & 0 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"lock": false,
"tasks": {
"demo": "deno run --allow-net --allow-read --allow-env=NODE_DEBUG --watch --no-check testdata/my_blog.ts --dev",
"test": "deno test --no-check=remote --allow-read"
Expand Down
14 changes: 7 additions & 7 deletions deps.ts
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,
Expand All @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion init.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2022 the Deno authors. All rights reserved. MIT license.

import { join, resolve } from "https://deno.land/std@0.153.0/path/mod.ts";
import { join, resolve } from "https://deno.land/std@0.171.0/path/mod.ts";

const HELP = `deno_blog
Expand Down

0 comments on commit 2ae65df

Please sign in to comment.