Skip to content

Commit

Permalink
chore(deps): update deno dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Apr 25, 2023
1 parent ebd427a commit 3432eb1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion routes/generate_png.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Handlers, RouteConfig } from "$fresh/server.ts";

import { contentType } from "https://deno.land/std@0.173.0/media_types/mod.ts";
import { contentType } from "https://deno.land/std@0.184.0/media_types/mod.ts";

import { getEmojiSVG, isEmoji } from "../utils/twemoji.ts";
import { getTextSVG, svgToPng } from "../utils/text.ts";
Expand Down
2 changes: 1 addition & 1 deletion routes/service_worker.js.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Handlers } from "$fresh/server.ts";

import { contentType } from "https://deno.land/std@0.173.0/media_types/mod.ts";
import { contentType } from "https://deno.land/std@0.184.0/media_types/mod.ts";

export const handler: Handlers = {
async GET() {
Expand Down
2 changes: 1 addition & 1 deletion utils/text_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.173.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.184.0/testing/asserts.ts";

import { getTextSVG, svgToPng } from "./text.ts";

Expand Down
4 changes: 2 additions & 2 deletions utils/twemoji_test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { assertEquals } from "https://deno.land/std@0.173.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.184.0/testing/asserts.ts";
import {
assertSpyCall,
assertSpyCalls,
stub,
} from "https://deno.land/std@0.173.0/testing/mock.ts";
} from "https://deno.land/std@0.184.0/testing/mock.ts";

import { getEmojiSVG, isEmoji } from "./twemoji.ts";

Expand Down

0 comments on commit 3432eb1

Please sign in to comment.