Skip to content

Commit

Permalink
chore: Update dependencies and bump version numbers across repo (#115)
Browse files Browse the repository at this point in the history
* Update dependencies and bump version numbers across repo

* deno lint

Co-authored-by: crookse <crookse@users.noreply.github.com>
Co-authored-by: Edward Bebbington <edward.bebbington@intercity.technology>
  • Loading branch information
3 people committed Feb 6, 2021
1 parent 1d6ef5d commit f69ce4e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions deps.ts
Expand Up @@ -2,16 +2,16 @@ export {
serve,
Server as DenoServer,
serveTLS,
} from "https://deno.land/std@0.84.0/http/server.ts";
} from "https://deno.land/std@0.86.0/http/server.ts";

export type {
HTTPOptions,
HTTPSOptions,
} from "https://deno.land/std@0.84.0/http/server.ts";
} from "https://deno.land/std@0.86.0/http/server.ts";

export {
acceptWebSocket,
isWebSocketCloseEvent,
} from "https://deno.land/std@0.84.0/ws/mod.ts";
} from "https://deno.land/std@0.86.0/ws/mod.ts";

export type { WebSocket } from "https://deno.land/std@0.84.0/ws/mod.ts";
export type { WebSocket } from "https://deno.land/std@0.86.0/ws/mod.ts";
2 changes: 2 additions & 0 deletions src/interfaces.ts
Expand Up @@ -3,12 +3,14 @@ export interface ITransmitterOptions {
* A property to determine number of ms to wait for a pong event before
* closing a client connection.
*/
// deno-lint-ignore camelcase
ping_interval?: number;

/**
* A property to determine number of ms before sending a ping event to a
* connected client.
*/
// deno-lint-ignore camelcase
ping_timeout?: number;

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/deps.ts
Expand Up @@ -4,4 +4,4 @@ export type { WebSocket } from "../deps.ts";

export { Rhum } from "https://deno.land/x/rhum@v1.1.7/mod.ts";

export { deferred } from "https://deno.land/std@0.84.0/async/deferred.ts";
export { deferred } from "https://deno.land/std@0.86.0/async/deferred.ts";

0 comments on commit f69ce4e

Please sign in to comment.