Skip to content

Commit

Permalink
chore: bump deps (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
deer authored Mar 31, 2024
1 parent 426b46a commit 9aaf007
Show file tree
Hide file tree
Showing 15 changed files with 104 additions and 104 deletions.
18 changes: 9 additions & 9 deletions .vscode/import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"THIS FILE EXISTS ONLY FOR VSCODE! IT IS NOT USED AT RUNTIME": {}
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"$std/": "https://deno.land/std@0.218.2/",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"$std/": "https://deno.land/std@0.221.0/",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js"
}
}
14 changes: 7 additions & 7 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as preact from "https://esm.sh/preact@10.19.6";
export * as preact from "https://esm.sh/preact@10.20.1";
export type {
FreshContext,
Handlers,
Expand All @@ -13,17 +13,17 @@ export {
extname,
fromFileUrl,
join,
} from "https://deno.land/std@0.218.2/path/mod.ts";
export * as JSONC from "https://deno.land/std@0.218.2/jsonc/mod.ts";
export { extract } from "https://deno.land/std@0.218.2/front_matter/yaml.ts";
} from "https://deno.land/std@0.221.0/path/mod.ts";
export * as JSONC from "https://deno.land/std@0.221.0/jsonc/mod.ts";
export { extract } from "https://deno.land/std@0.221.0/front_matter/yaml.ts";
export { CSS, render, Renderer } from "https://deno.land/x/gfm@0.6.0/mod.ts";
export { load } from "https://deno.land/std@0.218.2/dotenv/mod.ts";
export { existsSync } from "https://deno.land/std@0.218.2/fs/mod.ts";
export { load } from "https://deno.land/std@0.221.0/dotenv/mod.ts";
export { existsSync } from "https://deno.land/std@0.221.0/fs/mod.ts";
export { Client } from "https://deno.land/x/notion_sdk@v2.2.3/src/mod.ts";
export type {
CodeBlockObjectResponse,
PageObjectResponse,
RichTextItemResponse,
} from "https://deno.land/x/notion_sdk@v2.2.3/src/api-endpoints.ts";
export { $ } from "jsr:@david/dax@0.39.2";
export { upNlevels } from "jsr:@deer/upnlevels@0.0.1";
export { upNlevels } from "jsr:@deer/upnlevels@0.0.2";
2 changes: 1 addition & 1 deletion src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async function modifyDenoJson() {
}

denoJson.imports["$fresh/"] =
"https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/";
"https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/";

const denoJsonContent = JSON.stringify(denoJson, null, 2) + "\n";
await Deno.writeTextFile(DENO_JSON_PATH, denoJsonContent);
Expand Down
18 changes: 9 additions & 9 deletions tests/custom_titles_fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
18 changes: 9 additions & 9 deletions tests/empty_posts_dir_fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
18 changes: 9 additions & 9 deletions tests/fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
18 changes: 9 additions & 9 deletions tests/localization_fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
2 changes: 1 addition & 1 deletion tests/localization_test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assertEquals,
assertExists,
} from "https://deno.land/std@0.218.2/assert/mod.ts";
} from "https://deno.land/std@0.221.0/assert/mod.ts";
import blogConfig from "./localization_fixture/blog.config.ts";
import { languages } from "../src/utils/localization.ts";
import { createHandler } from "../deps.ts";
Expand Down
18 changes: 9 additions & 9 deletions tests/no_posts_dir_fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
18 changes: 9 additions & 9 deletions tests/notion_no_posts_dir_fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
2 changes: 1 addition & 1 deletion tests/notion_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import manifest from "./fixture/fresh.gen.ts";
import { blogPlugin } from "../src/plugin/blog.ts";
import { Context } from "../src/routes/_middleware.ts";

import "https://deno.land/std@0.218.2/dotenv/load.ts";
import "https://deno.land/std@0.221.0/dotenv/load.ts";

parameterizedTests(notionConfig);

Expand Down
18 changes: 9 additions & 9 deletions tests/responsive_navbar_fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
18 changes: 9 additions & 9 deletions tests/separate_index_fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
18 changes: 9 additions & 9 deletions tests/styles_fixture/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"preview": "deno run -A main.ts"
},
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/844370cadd1ed28fd76f796c2afc1e2411bfc425/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"$std/": "https://deno.land/std@0.218.2/"
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"$std/": "https://deno.land/std@0.221.0/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
Expand Down
8 changes: 4 additions & 4 deletions tests/test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ export {
assertEquals,
assertNotEquals,
assertStringIncludes,
} from "https://deno.land/std@0.218.2/assert/mod.ts";
} from "https://deno.land/std@0.221.0/assert/mod.ts";
export {
default as puppeteer,
Page,
} from "https://deno.land/x/puppeteer@16.2.0/mod.ts";
export type {
ChromeArgOptions,
} from "https://deno.land/x/puppeteer@16.2.0/src/deno/LaunchOptions.ts";
export { delay } from "https://deno.land/std@0.218.2/async/delay.ts";
export { delay } from "https://deno.land/std@0.221.0/async/delay.ts";
export {
TextLineStream,
} from "https://deno.land/std@0.218.2/streams/text_line_stream.ts";
} from "https://deno.land/std@0.221.0/streams/text_line_stream.ts";
export { $ } from "jsr:@david/dax@0.39.2";
export { STATUS_CODE } from "https://deno.land/std@0.218.2/http/status.ts";
export { STATUS_CODE } from "https://deno.land/std@0.221.0/http/status.ts";

0 comments on commit 9aaf007

Please sign in to comment.