Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Aug 11, 2021
1 parent 6631c57 commit b7b302c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/opine.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { opine, Request } from 'https://deno.land/x/[email protected].0/mod.ts'
import { opine, Request } from 'https://deno.land/x/[email protected].1/mod.ts'
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'https://deno.land/x/[email protected]/mod.ts'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'
Expand Down
2 changes: 1 addition & 1 deletion examples/vanilla.ts
Original file line number Diff line number Diff line change
@@ -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/[email protected]/mod.ts'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'
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, 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()

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.103.0/http/server.ts'
import { ServerRequest } from 'https://deno.land/std@0.104.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.103.0/http/server.ts'
import { ServerRequest } from 'https://deno.land/std@0.104.0/http/server.ts'

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

0 comments on commit b7b302c

Please sign in to comment.