From 6751dbb49e32c67ad19498516cfc0a17c0596e02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 09:47:39 +0900 Subject: [PATCH] chore(deps): update deno dependencies (#11) Co-authored-by: GitHub --- example/main.ts | 2 +- src/memory_file.ts | 6 +++--- src/memory_file_test.ts | 4 ++-- src/polyfill_test.ts | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/example/main.ts b/example/main.ts index 8360b9e..006c510 100644 --- a/example/main.ts +++ b/example/main.ts @@ -1,4 +1,4 @@ -import { serve } from "https://deno.land/std@0.180.0/http/mod.ts"; +import { serve } from "https://deno.land/std@0.181.0/http/mod.ts"; import { DB } from "https://deno.land/x/sqlite@v3.7.0/mod.ts"; import { prepareLocalFile, prepareVirtualFile } from "../mod.ts"; diff --git a/src/memory_file.ts b/src/memory_file.ts index baa5733..dc71fa8 100644 --- a/src/memory_file.ts +++ b/src/memory_file.ts @@ -1,9 +1,9 @@ -import { assert } from "https://deno.land/std@0.180.0/testing/asserts.ts"; -import { copy } from "https://deno.land/std@0.180.0/bytes/mod.ts"; +import { assert } from "https://deno.land/std@0.181.0/testing/asserts.ts"; +import { copy } from "https://deno.land/std@0.181.0/bytes/mod.ts"; import { fromFileUrl, resolve, -} from "https://deno.land/std@0.180.0/path/mod.ts"; +} from "https://deno.land/std@0.181.0/path/mod.ts"; const defaultFileInfo = { atime: null, diff --git a/src/memory_file_test.ts b/src/memory_file_test.ts index 18c495b..b82abc0 100644 --- a/src/memory_file_test.ts +++ b/src/memory_file_test.ts @@ -1,11 +1,11 @@ import { assertEquals, assertThrows, -} from "https://deno.land/std@0.180.0/testing/asserts.ts"; +} from "https://deno.land/std@0.181.0/testing/asserts.ts"; import { readAll, writeAll, -} from "https://deno.land/std@0.180.0/streams/mod.ts"; +} from "https://deno.land/std@0.181.0/streams/mod.ts"; import { InMemoryFsFile } from "./memory_file.ts"; const targetFile = new URL("../tests/tmp.txt", import.meta.url); diff --git a/src/polyfill_test.ts b/src/polyfill_test.ts index 6c6a29a..ced5ece 100644 --- a/src/polyfill_test.ts +++ b/src/polyfill_test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.180.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.181.0/testing/asserts.ts"; import { createDenoPolyfill } from "./polyfill.ts"; import { InMemoryFsFile, pathFromURL, VirtualFile } from "./memory_file.ts";