Skip to content

Commit

Permalink
chore(deps): update deno dependencies (#11)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Mar 27, 2023
1 parent d9ed05b commit 6751dbb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion example/main.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
6 changes: 3 additions & 3 deletions src/memory_file.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/memory_file_test.ts
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/polyfill_test.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit 6751dbb

Please sign in to comment.