We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get the following warning during yarn install of the monorepo project, where on of the workspaces uses graphql-schema-utilities:
yarn install
graphql-schema-utilities
warning "workspace-aggregator-... > ... > [email protected]" has incorrect peer dependency "graphql@^0.13.0 || ^14.0.0".
We use GraphQL v15, which is out for more than a year and is required by most of the modern tooling.
The warning is issued because the package requires GraphQL v13 or v14 in peer dependencies:
"peerDependencies": { "graphql": "^0.13.0 || ^14.0.0" }
The text was updated successfully, but these errors were encountered:
Add graphql v15 as supported peer dependency
5d8201d
Fixes awslabs#37
Successfully merging a pull request may close this issue.
I get the following warning during
yarn install
of the monorepo project, where on of the workspaces usesgraphql-schema-utilities
:We use GraphQL v15, which is out for more than a year and is required by most of the modern tooling.
The warning is issued because the package requires GraphQL v13 or v14 in peer dependencies:
The text was updated successfully, but these errors were encountered: