-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Related: #1350 Planned in this PR: - [x] Move all common code from `flow` to a common package. - [x] Make sure `flow` plugin works. - [x] Add the latest changes of `flow` plugin. - [x] Create `typescript` package with the same features as `flow` package. - [x] Write tests for `typescript` package. - [x] Move all common code from `flow-documents` to a common package. - [x] Make sure `flow-documents` plugin works. - [x] Add the latest changes of `flow-documents` plugin. - [x] Create `typescript-documents` package with the same features as `flow-documents` package. - [x] Write tests for `typescript-documents` package. - [x] Move all common code from `flow-resolvers` to a common package. - [x] Make sure `flow-resolvers` plugin works. - [x] Add the latest changes of `flow-resolvers` plugin. - [x] Create `typescript-resolvers` package with the same features as `flow-resolvers` package. - [x] Write tests for `typescript-resolvers` package. - [x] Add missing features from previous `typescript` package. - [x] Add missing features from previous `typescript-documents` package. - [x] Add missing features from previous `typescript-resolvers` package. - [x] Add introspection types @kamilkisiela #1406 - [x] Implement `namingConvention` again @kamilkisiela #1407 - [x] Fix issue with prefix @kamilkisiela #1407 - [x] Apply this: #1357 @ardatan - [x] Refactor `react-apollo` @dotansimha - [x] Refactor `apollo-angular` @dotansimha - [x] Apply fix to Flow plugins: #1413 @kamilkisiela - [x] Refactor `typescript-mongo` @dotansimha - [x] Refactor `stencil-apollo` @ardatan - [x] Remove Handlebars compiler package from all plugins, and add support for tree shaking. @ardatan - [x] Make sure to update packages in `gql-gen init` @kamilkisiela - [x] Rename `XXX-documents` to `XXX-operations` - [x] Move all flatten utils from `core` to `plugin-helpers` and clean `core` package. @kamilkisiela - [x] Deprecate `buildTemplateContext` and `flattenTypes`. @kamilkisiela - [x] Repo cleanup - [x] Update README @kamilkisiela - [x] Update docs @kamilkisiela - [x] Write docs about writing plugins with visitor @kamilkisiela - [x] Update examples - [x] Change packages names @dotansimha
- Loading branch information
1 parent
28c537b
commit 645c985
Showing
404 changed files
with
13,305 additions
and
30,634 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#/bin/sh | ||
|
||
node packages/graphql-codegen-cli/dist/cli.js --config ./dev-test/codegen.yml | ||
node packages/graphql-codegen-cli/dist/commonjs/cli.js --config ./dev-test/codegen.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#/bin/sh | ||
|
||
node packages/graphql-codegen-cli/dist/cli.js --config ./dev-test/codegen-watch.yml | ||
node packages/graphql-codegen-cli/dist/commonjs/cli.js --config ./dev-test/codegen.yml -w |
Oops, something went wrong.