From 59ef9ee945a20c182eb3656f4bbeea773ad3476f Mon Sep 17 00:00:00 2001 From: v1rtl Date: Sat, 28 Aug 2021 16:57:42 +0300 Subject: [PATCH] bump std --- egg.json | 2 +- examples/vanilla.ts | 2 +- mod.ts | 6 +++--- mod_test.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/egg.json b/egg.json index 99a4c9d..0b5eb01 100644 --- a/egg.json +++ b/egg.json @@ -1,5 +1,5 @@ { - "$schema": "https://x.nest.land/eggs@0.3.6/src/schema.json", + "$schema": "https://x.nest.land/eggs@0.3.8/src/schema.json", "name": "parsec", "entry": "./mod.ts", "description": "Tiny body parser for Deno. Port of the milliparsec library.", diff --git a/examples/vanilla.ts b/examples/vanilla.ts index 2e35e9a..dc9dc00 100644 --- a/examples/vanilla.ts +++ b/examples/vanilla.ts @@ -1,4 +1,4 @@ -import { serve } from 'https://deno.land/std@0.104.0/http/server.ts' +import { serve } from 'https://deno.land/std@0.106.0/http/server.ts' import { json, ReqWithBody } from '../mod.ts' const s = serve({ port: 3000 }) diff --git a/mod.ts b/mod.ts index 77bddb3..825aaa2 100644 --- a/mod.ts +++ b/mod.ts @@ -1,6 +1,6 @@ -import * as qs from 'https://deno.land/std@0.104.0/node/querystring.ts' -import { ServerRequest } from 'https://deno.land/std@0.104.0/http/server.ts' -import { readAll } from 'https://deno.land/std@0.104.0/io/mod.ts' +import * as qs from 'https://deno.land/std@0.106.0/node/querystring.ts' +import { ServerRequest } from 'https://deno.land/std@0.106.0/http/server.ts' +import { readAll } from 'https://deno.land/std@0.106.0/io/mod.ts' type Req = Pick diff --git a/mod_test.ts b/mod_test.ts index 4458cba..1ee5203 100644 --- a/mod_test.ts +++ b/mod_test.ts @@ -1,5 +1,5 @@ import { superdeno } from 'https://deno.land/x/superdeno@4.4.0/mod.ts' -import { ServerRequest } from 'https://deno.land/std@0.104.0/http/server.ts' +import { ServerRequest } from 'https://deno.land/std@0.106.0/http/server.ts' import { bodyParser, json, ReqWithBody, urlencoded } from './mod.ts' import { describe, it, run } from 'https://deno.land/x/tincan@0.2.1/mod.ts'