Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
fix exports (#925)
Browse files Browse the repository at this point in the history
* fix exports

* update changelog
  • Loading branch information
James Baxley authored Aug 1, 2017
1 parent 742e9b2 commit abf4347
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
### vNext
- Replace string refs with callback refs [#908](https://github.com/apollographql/react-apollo/pull/908)

### 1.4.10
- Fix: fix UMD bundle pointing to apolloClient for some reason

### 1.4.9
- Fix: fix matching types with exports for flow and ts

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-apollo",
"version": "1.4.9",
"version": "1.4.10",
"description": "React data container for Apollo Client",
"main": "lib/react-apollo.umd.js",
"module": "./lib/index.js",
Expand Down
7 changes: 6 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
export * from './browser';
export * from './server';
export {
getDataFromTree,
renderToStringWithData,
walkTree,
cleanupApolloState,
} from './server';
2 changes: 1 addition & 1 deletion test/react-web/server/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
walkTree,
getDataFromTree,
renderToStringWithData,
} from '../../../src/server';
} from '../../../src';
import 'isomorphic-fetch';
import gql from 'graphql-tag';
import * as _ from 'lodash';
Expand Down

0 comments on commit abf4347

Please sign in to comment.