From 4180be215f02bd7045b6c56f2f787bd3ed40e80f Mon Sep 17 00:00:00 2001 From: LitoMore Date: Sun, 8 Dec 2024 14:35:50 +0800 Subject: [PATCH] Bump simple-icons@13.20.0 --- deno.json | 6 +++--- deno.lock | 30 +++++++++++++++--------------- source/handlers.ts | 2 +- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/deno.json b/deno.json index 582f242..5b8cbc4 100644 --- a/deno.json +++ b/deno.json @@ -18,9 +18,9 @@ ] }, "imports": { - "@std/assert": "jsr:@std/assert@^1.0.8", - "@std/http": "jsr:@std/http@^1.0.11", - "simple-icons": "npm:simple-icons@^13.19.0", + "@std/assert": "jsr:@std/assert@^1.0.9", + "@std/http": "jsr:@std/http@^1.0.12", + "simple-icons": "npm:simple-icons@^13.20.0", "svg-path-bbox": "npm:svg-path-bbox@^2.1.0", "svgpath": "npm:svgpath@^2.6.0" } diff --git a/deno.lock b/deno.lock index cc3be47..94fc8af 100644 --- a/deno.lock +++ b/deno.lock @@ -1,30 +1,30 @@ { "version": "4", "specifiers": { - "jsr:@std/assert@^1.0.8": "1.0.8", - "jsr:@std/cli@^1.0.6": "1.0.6", + "jsr:@std/assert@^1.0.9": "1.0.9", + "jsr:@std/cli@^1.0.8": "1.0.8", "jsr:@std/encoding@^1.0.5": "1.0.5", "jsr:@std/fmt@^1.0.3": "1.0.3", "jsr:@std/html@^1.0.3": "1.0.3", - "jsr:@std/http@^1.0.11": "1.0.11", + "jsr:@std/http@^1.0.12": "1.0.12", "jsr:@std/internal@^1.0.5": "1.0.5", "jsr:@std/media-types@^1.1.0": "1.1.0", "jsr:@std/net@^1.0.4": "1.0.4", "jsr:@std/path@^1.0.8": "1.0.8", "jsr:@std/streams@^1.0.8": "1.0.8", - "npm:simple-icons@^13.19.0": "13.19.0", + "npm:simple-icons@^13.20.0": "13.20.0", "npm:svg-path-bbox@^2.1.0": "2.1.0", "npm:svgpath@^2.6.0": "2.6.0" }, "jsr": { - "@std/assert@1.0.8": { - "integrity": "ebe0bd7eb488ee39686f77003992f389a06c3da1bbd8022184804852b2fa641b", + "@std/assert@1.0.9": { + "integrity": "a9f0c611a869cc791b26f523eec54c7e187aab7932c2c8e8bea0622d13680dcd", "dependencies": [ "jsr:@std/internal" ] }, - "@std/cli@1.0.6": { - "integrity": "d22d8b38c66c666d7ad1f2a66c5b122da1704f985d3c47f01129f05abb6c5d3d" + "@std/cli@1.0.8": { + "integrity": "3762d8dc9a373715c08d871c38d45e637b25266f013a1d0bbe560bca409de94e" }, "@std/encoding@1.0.5": { "integrity": "ecf363d4fc25bd85bd915ff6733a7e79b67e0e7806334af15f4645c569fefc04" @@ -35,8 +35,8 @@ "@std/html@1.0.3": { "integrity": "7a0ac35e050431fb49d44e61c8b8aac1ebd55937e0dc9ec6409aa4bab39a7988" }, - "@std/http@1.0.11": { - "integrity": "f1928e69e7dcf1664e22d153934cb866bf31e1bbe4bc59f8ac1b4d0e98cb7558", + "@std/http@1.0.12": { + "integrity": "85246d8bfe9c8e2538518725b158bdc31f616e0869255f4a8d9e3de919cab2aa", "dependencies": [ "jsr:@std/cli", "jsr:@std/encoding", @@ -71,8 +71,8 @@ } }, "npm": { - "simple-icons@13.19.0": { - "integrity": "sha512-N4mUzqRGm1/V3IRyxibGZXwPO1QdwIZmZADn7O6oam2Rz/vnf8TaysvwMy3gIobObthROroa9/oXN31E9gI3zA==" + "simple-icons@13.20.0": { + "integrity": "sha512-8IQSSOaXhgG9fH0dJsUmlMlo0Jt0Xd1MwxsK75TlRZO0FR7P5UQ8TEaIPOwlRMHd/FzZJ0R3vFHW0kOH7PbdMw==" }, "svg-path-bbox@2.1.0": { "integrity": "sha512-PEoSQFbBvL7FOCE4cN8Knej6L7bXdNkjPcUYsfMMpq0HpnqiO0sE2mcXTd7LX160aOyh5HbaeN/SoY8thMk5Kg==", @@ -86,9 +86,9 @@ }, "workspace": { "dependencies": [ - "jsr:@std/assert@^1.0.8", - "jsr:@std/http@^1.0.11", - "npm:simple-icons@^13.19.0", + "jsr:@std/assert@^1.0.9", + "jsr:@std/http@^1.0.12", + "npm:simple-icons@^13.20.0", "npm:svg-path-bbox@^2.1.0", "npm:svgpath@^2.6.0" ] diff --git a/source/handlers.ts b/source/handlers.ts index 208925b..9645795 100644 --- a/source/handlers.ts +++ b/source/handlers.ts @@ -35,7 +35,7 @@ export const faviconHandler: Handler = () => { }); }; -export const iconHandler: Handler = (request, _info, params) => { +export const iconHandler: Handler = (request, params) => { const url = new URL(request.url); const viewbox = url.searchParams.get('viewbox') || undefined; const size = url.searchParams.get('size') || undefined;