
* WIP * Added script and making implementation more roboust * Added rollback on issues with the migration * Cleanup the code * Use allSettled instead of all * Do not check spelling in schema files. Schema is pulled from the API and is not controlled by our team * Update the pkg json * Fix typo on log message * Add dedupe to the ignored words. Its used by codegen * Add changesets
17 lines
442 B
YAML
17 lines
442 B
YAML
schema: graphql/schema.graphql
|
|
documents: [graphql/**/*.graphql, src/**/*.ts, src/**/*.tsx]
|
|
extensions:
|
|
codegen:
|
|
overwrite: true
|
|
generates:
|
|
generated/graphql.ts:
|
|
config:
|
|
dedupeFragments: true
|
|
dedupeOperationSuffix: true
|
|
plugins:
|
|
- typescript
|
|
- typescript-operations
|
|
- typed-document-node
|
|
generated/schema.graphql:
|
|
plugins:
|
|
- schema-ast
|