From c4cd2c422654de928180564289806c430104678d Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Wed, 11 Sep 2019 17:38:37 -0400 Subject: [PATCH] Avoid re-exporting all of src/utilities by default. This saves 1.1KB of minified+gzip code, and I believe it aligns with our goals of consolidating the parts of apollo-utilities that we actually use into the combined @apollo/client package. More explanation in this comment: https://github.com/apollographql/apollo-client/pull/5292#discussion_r323458682 --- src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c9b1f636ff1..6dac574944d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -39,4 +39,3 @@ export default ApolloClient; export * from './cache/core'; export * from './cache/inmemory'; -export * from './utilities';