Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hugojosefson committed Jul 13, 2023
1 parent 79ac5b6 commit ec9d2ee
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 97 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ https://deno.com/deploy/docs/runtime-broadcast-channel#example
Adapted to use this module:

```typescript
import { serve } from "https://deno.land/std@0.193.0/http/server.ts";
import { serve } from "https://deno.land/std@0.194.0/http/server.ts";
import { createBroadcastChannel } from "https://deno.land/x/websocket_broadcastchannel/mod.ts";

const messages: string[] = [];
Expand Down
116 changes: 30 additions & 86 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/server-example.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run --allow-net --allow-env=PORT --watch
import { serve } from "https://deno.land/std@0.193.0/http/server.ts";
import { serve } from "https://deno.land/std@0.194.0/http/server.ts";
import { createBroadcastChannel } from "../mod.ts";

const messages: string[] = [];
Expand Down
2 changes: 1 addition & 1 deletion readme/generate-readme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
dirname,
relative,
resolve,
} from "https://deno.land/std@0.193.0/path/mod.ts";
} from "https://deno.land/std@0.194.0/path/mod.ts";

/**
* This program generates the README.md for the root directory.
Expand Down
2 changes: 1 addition & 1 deletion src/log.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { basename, extname } from "https://deno.land/std@0.193.0/path/mod.ts";
import { basename, extname } from "https://deno.land/std@0.194.0/path/mod.ts";
import type { Debug } from "https://deno.land/x/quiet_debug@v1.0.0/mod.ts";
import { debug } from "https://deno.land/x/quiet_debug@v1.0.0/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/fn.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertNotStrictEquals } from "https://deno.land/std@0.193.0/testing/asserts.ts";
import { assertNotStrictEquals } from "https://deno.land/std@0.194.0/testing/asserts.ts";

export const DEFAULT_TEST_TIMEOUT = 2000;

Expand Down
2 changes: 1 addition & 1 deletion test/id-url.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assertNotStrictEquals,
assertStrictEquals,
} from "https://deno.land/std@0.193.0/testing/asserts.ts";
} from "https://deno.land/std@0.194.0/testing/asserts.ts";
import { IdUrl } from "../src/id-url.ts";

Deno.test("IdUrl", () => {
Expand Down
4 changes: 2 additions & 2 deletions test/one-channel.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env -S deno run --allow-net --allow-env
import { parse } from "https://deno.land/std@0.193.0/flags/mod.ts";
import { parse } from "https://deno.land/std@0.194.0/flags/mod.ts";
import { createBroadcastChannel } from "../mod.ts";
import { deferred } from "https://deno.land/std@0.193.0/async/deferred.ts";
import { deferred } from "https://deno.land/std@0.194.0/async/deferred.ts";
import { s, sleep, ss } from "../src/fn.ts";
import { CommandFailureError } from "https://deno.land/x/run_simple@2.1.0/src/run.ts";

Expand Down
6 changes: 3 additions & 3 deletions test/websocket-broadcastchannel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ import {
beforeAll,
describe,
it,
} from "https://deno.land/std@0.193.0/testing/bdd.ts";
} from "https://deno.land/std@0.194.0/testing/bdd.ts";
import {
assertEquals,
assertInstanceOf,
assertStrictEquals,
} from "https://deno.land/std@0.193.0/testing/asserts.ts";
} from "https://deno.land/std@0.194.0/testing/asserts.ts";
import { getAvailablePort } from "./get-available-port.ts";
import { defaultWebSocketUrl } from "../src/default-websocket-url.ts";
import { assertDifferentInstances, rejectOnTimeout } from "./fn.ts";
import { deferred } from "https://deno.land/std@0.193.0/async/deferred.ts";
import { deferred } from "https://deno.land/std@0.194.0/async/deferred.ts";
import { using } from "../src/using.ts";
import { createBroadcastChannel, WebSocketBroadcastChannel } from "../mod.ts";

Expand Down

0 comments on commit ec9d2ee

Please sign in to comment.