Skip to content

Commit

Permalink
Fix linting and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
msand committed Aug 28, 2024
1 parent 177e998 commit bea123f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/__tests__/__snapshots__/exports.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Array [
"ApolloError",
"ApolloLink",
"ApolloProvider",
"Cache",
"DocumentTransform",
"DocumentType",
"HttpLink",
Expand Down Expand Up @@ -74,7 +73,6 @@ Array [
exports[`exports of public entry points @apollo/client/cache 1`] = `
Array [
"ApolloCache",
"Cache",
"EntityStore",
"InMemoryCache",
"MissingFieldError",
Expand All @@ -96,7 +94,6 @@ Array [
"ApolloClient",
"ApolloError",
"ApolloLink",
"Cache",
"DocumentTransform",
"HttpLink",
"InMemoryCache",
Expand Down
2 changes: 1 addition & 1 deletion src/cache/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export type {
WatchFragmentResult,
} from "./core/cache.js";
export { ApolloCache } from "./core/cache.js";
export { Cache } from "./core/types/Cache.js";
export type { Cache } from "./core/types/Cache.js";
export type { DataProxy } from "./core/types/DataProxy.js";
export type {
MissingTree,
Expand Down
2 changes: 1 addition & 1 deletion src/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export { isApolloError, ApolloError } from "../errors/index.js";
export type {
// All the exports (types) from ../cache, minus cacheSlot,
// which we want to keep semi-private.
Cache,
Transaction,
DataProxy,
InMemoryCacheConfig,
Expand All @@ -44,7 +45,6 @@ export type {
WatchFragmentResult,
} from "../cache/index.js";
export {
Cache,
ApolloCache,
InMemoryCache,
MissingFieldError,
Expand Down

0 comments on commit bea123f

Please sign in to comment.