Skip to content

Commit 3c26fac

Browse files
author
v1rtl
committed
bump std
1 parent 39f0511 commit 3c26fac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

example.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { compression } from './mod.ts'
2-
import { Server } from 'https://deno.land/std@0.178.0/http/server.ts'
2+
import { Server } from 'https://deno.land/std@0.179.0/http/server.ts'
33

44
const s = new Server({
55
handler: async (req) => {

mod.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { readAll } from 'https://deno.land/std@0.178.0/streams/read_all.ts'
1+
import { readAll } from 'https://deno.land/std@0.179.0/streams/read_all.ts'
22
import { compress as brotli } from 'https://deno.land/x/[email protected]/mod.ts'
33
import { Foras } from 'https://deno.land/x/[email protected]/src/deno/mod.ts'
44
import { Accepts } from 'https://deno.land/x/[email protected]/mod.ts'
@@ -40,7 +40,7 @@ export type CompressionOptions = Partial<{
4040
* @example
4141
* ```ts
4242
import { compression } from 'https://deno.land/x/http_compression/mod.ts'
43-
import { Server } from 'https://deno.land/std@0.178.0/http/server.ts'
43+
import { Server } from 'https://deno.land/std@0.179.0/http/server.ts'
4444
4545
new Server({
4646
handler: async (req) => {

0 commit comments

Comments
 (0)