Skip to content

Commit c81d4cd

Browse files
author
v1rtl
committed
bump deps
1 parent 4834c7d commit c81d4cd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createServer, Server as httpServer, ServerHandler } from 'https://deno.land/x/node_http@0.0.7/mod.ts'
1+
import { createServer, Server as httpServer, ServerHandler } from 'https://deno.land/x/node_http@0.0.8/mod.ts'
22

33
import Server from './server.ts'
44
import Test from './test.ts'

server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import * as http from 'https://deno.land/x/node_http@0.0.7/mod.ts'
2-
import type { AddressInfo } from 'https://deno.land/x/node_http@0.0.7/mod.ts'
1+
import * as http from 'https://deno.land/x/node_http@0.0.8/mod.ts'
2+
import type { AddressInfo } from 'https://deno.land/x/node_http@0.0.8/mod.ts'
33

44
export default class Server {
55
readonly _server: http.Server

test/errors.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, it, run, beforeEach, expect } from 'https://deno.land/x/tincan/mod.ts'
22
import fetch from '../mod.ts'
3-
import { createServer, Server } from 'https://deno.land/x/node_http@0.0.7/mod.ts'
3+
import { createServer, Server } from 'https://deno.land/x/node_http@0.0.8/mod.ts'
44

55
let server: Server,
66
closed = 0

test/integration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, it, run } from 'https://deno.land/x/tincan@0.2.1/mod.ts'
2-
import { createServer } from 'https://deno.land/x/node_http@0.0.7/mod.ts'
3-
import { App } from 'https://deno.land/x/tinyhttp@0.1.8/mod.ts'
2+
import { createServer } from 'https://deno.land/x/node_http@0.0.8/mod.ts'
3+
import { App } from 'https://deno.land/x/tinyhttp@0.1.11/mod.ts'
44
import { ServerRequest } from 'https://deno.land/std@0.98.0/http/server.ts'
55
import { makeFetch } from '../mod.ts'
66

test/lib.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, it, beforeEach, expect, run } from 'https://deno.land/x/tincan@0.2.1/mod.ts'
22
import fetch, { makeFetch } from '../mod.ts'
3-
import { createServer, Server } from 'https://deno.land/x/node_http@0.0.7/mod.ts'
4-
import { App } from 'https://deno.land/x/tinyhttp@0.1.7/app.ts'
3+
import { createServer, Server } from 'https://deno.land/x/node_http@0.0.8/mod.ts'
4+
import { App } from 'https://deno.land/x/tinyhttp@0.1.11/app.ts'
55

66
let server: Server,
77
closed = 0

0 commit comments

Comments
 (0)