Skip to content

Commit

Permalink
patch: Mark graphql as a peer dependency (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed May 3, 2024
1 parent 73665d0 commit e3326fb
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 22 deletions.
5 changes: 5 additions & 0 deletions .changeset/warm-chefs-tan.md
@@ -0,0 +1,5 @@
---
'@0no-co/graphqlsp': patch
---

Update `graphql` to variably support `^15.5.0` and include future support for v17. The `graphql` package is now marked as a peer dependency in addition to a regular dependency.
5 changes: 3 additions & 2 deletions packages/graphqlsp/package.json
Expand Up @@ -52,11 +52,12 @@
},
"dependencies": {
"@gql.tada/internal": "^0.3.0",
"graphql": "^16.8.1",
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0",
"node-fetch": "^2.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
"typescript": "^5.0.0",
"graphql": "^15.5.0 || ^16.0.0 || ^17.0.0"
},
"publishConfig": {
"provenance": true
Expand Down
41 changes: 21 additions & 20 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e3326fb

Please sign in to comment.