Skip to content

Commit 10c1baa

Browse files
author
v1rtl
committed
bump deps
1 parent 54e3b55 commit 10c1baa

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.136.0/http/server.ts'
2+
import { Server } from 'https://deno.land/std@0.148.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,7 +1,7 @@
11
import { compress as brotli } from 'https://deno.land/x/[email protected]/mod.ts'
22
import { deflate, gzip } from 'https://deno.land/x/[email protected]/mod.ts'
33
import { Accepts } from 'https://deno.land/x/[email protected]/mod.ts'
4-
import { readAll } from 'https://deno.land/std@0.136.0/streams/conversion.ts'
4+
import { readAll } from 'https://deno.land/std@0.148.0/streams/conversion.ts'
55

66
const funcs = {
77
br: brotli,
@@ -46,7 +46,7 @@ export type CompressionOptions = {
4646
*
4747
* @example
4848
* ```ts
49-
*import { serve } from 'https://deno.land/std@0.136.0/http/server.ts'
49+
*import { serve } from 'https://deno.land/std@0.148.0/http/server.ts'
5050
*import { compression } from 'https://deno.land/x/compression/brotli.ts'
5151
*
5252
*const s = serve({ port: 3000 })

0 commit comments

Comments
 (0)