diff --git a/Changelog.md b/Changelog.md index 9949bbf511..f7e7c0687c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ ### vNext +### 1.4.1 +- Fix: Fix compilation of test-utils from move to ES bundles + ### 1.4.0 #### BREAKING FOR TYPESCRIPT USERS - Feature: Enhanced typescript definitions to allow for more valid type checking of graphql HOC [PR #695](https://github.com/apollographql/react-apollo/pull/695) diff --git a/examples/create-react-app/src/Pokemon.test.js b/examples/create-react-app/src/Pokemon.test.js index ef7e0db32e..42a6a81feb 100644 --- a/examples/create-react-app/src/Pokemon.test.js +++ b/examples/create-react-app/src/Pokemon.test.js @@ -1,6 +1,6 @@ import React from "react"; import renderer from "react-test-renderer"; -import { MockedProvider } from "../../../lib/react-apollo.test-utils.umd"; +import { MockedProvider } from "../../../lib/test-utils"; import { print } from "graphql"; import { addTypenameToDocument } from "apollo-client/queries/queryTransform"; diff --git a/package.json b/package.json index c33ce8656a..e2684e63a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-apollo", - "version": "1.4.0", + "version": "1.4.1", "description": "React data container for Apollo Client", "main": "lib/react-apollo.umd.js", "module": "./lib/index.js", diff --git a/rollup.test-utils.config.js b/rollup.test-utils.config.js index fca94c11bd..bc7ddb06dd 100644 --- a/rollup.test-utils.config.js +++ b/rollup.test-utils.config.js @@ -1,6 +1,6 @@ export default { entry: "lib/test-utils.js", - dest: "lib/react-apollo.test-utils.umd.js", + dest: "lib/test-utils.js", format: "umd", sourceMap: true, moduleName: "react-apollo",