Skip to content
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

removed circular dep, fixed npm devDep, Angular2-AOT compatibility #778

Closed
wants to merge 3 commits into from

Conversation

chriswep
Copy link

TODO:

  • [-] If this PR is a new feature, reference an issue where a consensus about the design was reached (not necessary for small changes)
  • Make sure all of the significant new logic is covered by tests
  • Rebase your changes on master so that they can be merged easily
  • Make sure all tests and linter rules pass
  • Update CHANGELOG.md with your change
  • Add your name and email to the AUTHORS file (optional)
  • [-] If this was a change that affects the external API, update the docs and post a link to the PR in the discussion
  • removed circular dependency in data/store.ts [Issue Incompatibility with Rollup #731]
  • added "ApolloClient" to the named exports to make it compatible with Angular2 AOT compile [Issue Please add Ahead of time compile support #758]
  • moved dev @types to devDependencies otherwise they potentially brake projects that are importing apollo-client [Issue Consider moving @types packages from devDependencies to dependencies #713]

Chris Metz added 2 commits October 15, 2016 17:31
- removed circular dependency in data/store.ts
- added "ApolloClient" to the named exports to make it compatible with Angular2 AOT compile
- moved dev @types to devDependencies otherwise they potentially brake projects that are importing apollo-client
@apollo-cla
Copy link

@metzc: Thank you for submitting a pull request! Before we can merge it, you'll need to sign the Meteor Contributor Agreement here: https://contribute.meteor.com/

@@ -43,3 +43,4 @@ matt debergalis <[email protected]>
Vladimir Guguiev <[email protected]>
Edvin Eriksson <[email protected]>
Agustin Polo <[email protected]>
Chris Metz <[email protected]>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aw, not a real email?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wondered.. isn't this openly readable for any email scanner? Also wouldn't put my address anywhere else openly. What do you think?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Up to you. I put my real email on GitHub, but I understand not everyone wants to.

@@ -34,7 +36,7 @@ function isVariable(value: Value): value is Variable {
return value.kind === 'Variable';
}

function isObject(value: Value): value is ObjectValue {
function isGraphObject(value: Value): value is ObjectValue {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe isGraphQLObjectValue would be a good name. This looks for GraphQL object literals in the AST.

@stubailo
Copy link
Contributor

Merging here: #780

@stubailo stubailo closed this Oct 15, 2016
@stubailo stubailo mentioned this pull request Oct 15, 2016
7 tasks
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Feb 2, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants