Skip to content

Commit

Permalink
bump std & examples
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Jul 30, 2021
1 parent 10be36a commit 8972c6f
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/abc.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Application } from 'https://deno.land/x/[email protected]/mod.ts'
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].1/mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].2/mod.ts'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'

const app = new Application()
Expand Down
4 changes: 2 additions & 2 deletions examples/oak.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Application, ServerRequest } from 'https://deno.land/x/oak@v7.7.0/mod.ts'
import { Application, ServerRequest } from 'https://deno.land/x/oak@v8.0.0/mod.ts'
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].1/mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].2/mod.ts'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'

const typeDefs = gql`
Expand Down
2 changes: 1 addition & 1 deletion examples/opine.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { opine, Request } from 'https://deno.land/x/[email protected]/mod.ts'
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].1/mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].2/mod.ts'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'

const typeDefs = gql`
Expand Down
4 changes: 2 additions & 2 deletions examples/tinyhttp.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { App, Request } from 'https://deno.land/x/[email protected].15/mod.ts'
import { App, Request } from 'https://deno.land/x/[email protected].18/mod.ts'
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].1/mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].2/mod.ts'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'

const typeDefs = gql`
Expand Down
4 changes: 2 additions & 2 deletions examples/vanilla.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { serve, ServerRequest } from 'https://deno.land/std@0.101.0/http/server.ts'
import { serve, ServerRequest } from 'https://deno.land/std@0.103.0/http/server.ts'
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].1/mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected].2/mod.ts'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'

const typeDefs = gql`
Expand Down
2 changes: 1 addition & 1 deletion http.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Request } from './types.ts'
import { runHttpQuery, GraphQLOptions } from './common.ts'
import { readAll } from 'https://deno.land/std@0.101.0/io/util.ts'
import { readAll } from 'https://deno.land/std@0.103.0/io/util.ts'

const dec = new TextDecoder()

Expand Down
2 changes: 1 addition & 1 deletion mod_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { GraphQLHTTP } from './http.ts'
import { runHttpQuery } from './common.ts'
import { buildSchema } from 'https://deno.land/x/[email protected]/mod.ts'
import { describe, it, expect, run } from 'https://deno.land/x/[email protected]/mod.ts'
import { ServerRequest } from 'https://deno.land/std@0.101.0/http/server.ts'
import { ServerRequest } from 'https://deno.land/std@0.103.0/http/server.ts'

const schema = buildSchema(`
type Query {
Expand Down
2 changes: 1 addition & 1 deletion types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ServerRequest } from 'https://deno.land/std@0.101.0/http/server.ts'
import { ServerRequest } from 'https://deno.land/std@0.103.0/http/server.ts'

/**
* Request type with only required properties
Expand Down

0 comments on commit 8972c6f

Please sign in to comment.