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

Merge React Apollo hooks into Apollo Client #5357

Merged
merged 29 commits into from
Sep 24, 2019
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2c03a0f
Remove specific test matching
hwillson Sep 16, 2019
eca59fe
Dependency updates (peer/dep/devDep) in preparation of RA merge
hwillson Sep 16, 2019
d0eca93
Modernize `OperationVariables` using `Record`
hwillson Sep 16, 2019
c5d872b
TS config changes in preparation of React Apollo being merged in
hwillson Sep 16, 2019
191065c
Bring in React Apollo source
hwillson Sep 16, 2019
d6ef803
Re-export React functionality
hwillson Sep 16, 2019
0f962e0
Typing changes to clear implicit any type errors
hwillson Sep 16, 2019
2e2cb07
Add new global dep exemptions for rollup bundling
hwillson Sep 16, 2019
2418a46
Bundlesize increase to accommodate React code
hwillson Sep 16, 2019
5a102b2
Update all React tests to use async instead of done callbacks
hwillson Sep 17, 2019
6ebacef
Create a new testing bundle
hwillson Sep 19, 2019
a241e09
Remove duplicated `MutationFetchResult`
hwillson Sep 19, 2019
dcf1602
Revert "Create a new testing bundle"
hwillson Sep 21, 2019
0f96dff
Stop building UMD bundles
hwillson Sep 21, 2019
ceedde9
Rollup bundling changes
hwillson Sep 21, 2019
4ecd8e1
Be explicit about root named React exports
hwillson Sep 21, 2019
87c410b
Doc updates to reflect new Apollo Client React API
hwillson Sep 23, 2019
08a2b1e
Merge branch 'release-3.0' into hello-react-apollo
hwillson Sep 23, 2019
68195a9
Pin optimism to 0.11.1
hwillson Sep 23, 2019
c3283dc
Fix TS source links; Exclude API from link checker
hwillson Sep 23, 2019
378bef0
Update all docs deps
hwillson Sep 23, 2019
a36780d
Update fetchOptions to point to new location
hwillson Sep 23, 2019
e6e268c
Revert "Pin optimism to 0.11.1"
benjamn Sep 23, 2019
7ee82b5
`react-dom` no longer needs to be a peer dep
hwillson Sep 23, 2019
b6ab68d
Remove unnecessary `await`s in tests
hwillson Sep 23, 2019
f973610
.npmignore is no longer necessary
hwillson Sep 24, 2019
ef6db11
Change compiled source location from "lib" to "dist"
hwillson Sep 24, 2019
4c7af4e
Adjust publish process to use "dist" as the project root
hwillson Sep 24, 2019
d7db78e
Copy LICENSE into dist during predeploy
hwillson Sep 24, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions config/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ const defaultGlobals = {
'graphql/language/visitor': 'visitor',
'fast-json-stable-stringify': 'stringify',
'@wry/equality': 'wryEquality',
graphql: 'graphql',
react: 'React'
hwillson marked this conversation as resolved.
Show resolved Hide resolved
};

function rollup({
Expand Down