-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
feat: mark plugins as optional #8893
Conversation
🦋 Changeset detectedLatest commit: e5b8a15 The changes in this PR will be included in the next version bump. This PR includes changesets to release 6 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
🚀 Snapshot Release (
|
Package | Version | Info |
---|---|---|
@graphql-cli/codegen |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/cli |
3.1.0-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/core |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/add |
4.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/fragment-matcher |
4.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/introspection |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/schema-ast |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/visitor-plugin-common |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/typescript-document-nodes |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/gql-tag-operations |
2.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/typescript-operations |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/typescript-resolvers |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/typed-document-node |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/typescript |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/client-preset |
2.1.0-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/gql-tag-operations-preset |
2.1.0-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/graphql-modules-preset |
3.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/testing |
2.0.1-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
@graphql-codegen/plugin-helpers |
4.1.0-alpha-20230215074613-e5b8a15b0 |
npm ↗︎ unpkg ↗︎ |
🚀 Website PreviewThe latest changes to the website are available as preview in: https://83a8e44d.graphql-code-generator.pages.dev |
e97fa0a
to
e5b8a15
Compare
import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index', documents: ['src/**/*.tsx', '!src/gql/**/*'], generates: { './src/gql/': { preset: 'client', - plugins: [], }, }, };