From b7b302ca25d5799cd71e3c15424d8b67b68558cc Mon Sep 17 00:00:00 2001 From: v1rtl Date: Wed, 11 Aug 2021 18:50:51 +0300 Subject: [PATCH] bump deps --- examples/opine.ts | 2 +- examples/vanilla.ts | 2 +- http.ts | 2 +- mod_test.ts | 2 +- types.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/opine.ts b/examples/opine.ts index 08fdc04..3a9316d 100644 --- a/examples/opine.ts +++ b/examples/opine.ts @@ -1,4 +1,4 @@ -import { opine, Request } from 'https://deno.land/x/opine@1.7.0/mod.ts' +import { opine, Request } from 'https://deno.land/x/opine@1.7.1/mod.ts' import { GraphQLHTTP } from '../mod.ts' import { makeExecutableSchema } from 'https://deno.land/x/graphql_tools@0.0.2/mod.ts' import { gql } from 'https://deno.land/x/graphql_tag@0.0.1/mod.ts' diff --git a/examples/vanilla.ts b/examples/vanilla.ts index 24f2324..d5cb942 100644 --- a/examples/vanilla.ts +++ b/examples/vanilla.ts @@ -1,4 +1,4 @@ -import { serve, ServerRequest } from 'https://deno.land/std@0.103.0/http/server.ts' +import { serve, ServerRequest } from 'https://deno.land/std@0.104.0/http/server.ts' import { GraphQLHTTP } from '../mod.ts' import { makeExecutableSchema } from 'https://deno.land/x/graphql_tools@0.0.2/mod.ts' import { gql } from 'https://deno.land/x/graphql_tag@0.0.1/mod.ts' diff --git a/http.ts b/http.ts index 5c4059f..1497e78 100644 --- a/http.ts +++ b/http.ts @@ -1,6 +1,6 @@ import { Request } from './types.ts' import { runHttpQuery, GQLOptions } from './common.ts' -import { readAll } from 'https://deno.land/std@0.103.0/io/util.ts' +import { readAll } from 'https://deno.land/std@0.104.0/io/util.ts' const dec = new TextDecoder() diff --git a/mod_test.ts b/mod_test.ts index a6a6efc..4015053 100644 --- a/mod_test.ts +++ b/mod_test.ts @@ -3,7 +3,7 @@ import { GraphQLHTTP } from './http.ts' import { runHttpQuery } from './common.ts' import { buildSchema } from 'https://deno.land/x/graphql_deno@v15.0.0/mod.ts' import { describe, it, expect, run } from 'https://deno.land/x/tincan@0.2.1/mod.ts' -import { ServerRequest } from 'https://deno.land/std@0.103.0/http/server.ts' +import { ServerRequest } from 'https://deno.land/std@0.104.0/http/server.ts' const schema = buildSchema(` type Query { diff --git a/types.ts b/types.ts index 803a479..a6c60f8 100644 --- a/types.ts +++ b/types.ts @@ -1,4 +1,4 @@ -import { ServerRequest } from 'https://deno.land/std@0.103.0/http/server.ts' +import { ServerRequest } from 'https://deno.land/std@0.104.0/http/server.ts' /** * Request type with only required properties