Skip to content

Commit

Permalink
chore: ignore coverage from index and types files (#4257)
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianOsipiuk authored Oct 2, 2022
1 parent 3993a1f commit f715b30
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/query-core/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

export { CancelledError } from './retryer'
export { QueryCache } from './queryCache'
export { QueryClient } from './queryClient'
Expand Down
2 changes: 2 additions & 0 deletions packages/query-core/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

import type { MutationState } from './mutation'
import type { QueryBehavior, Query } from './query'
import type { RetryValue, RetryDelayValue } from './retryer'
Expand Down
2 changes: 2 additions & 0 deletions packages/query-persist-client-core/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/* istanbul ignore file */

export * from './persist'
export * from './retryStrategies'
2 changes: 2 additions & 0 deletions packages/react-query/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

// Side effects
import './setBatchUpdatesFn'

Expand Down
2 changes: 2 additions & 0 deletions packages/react-query/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

import type * as React from 'react'
import type {
InfiniteQueryObserverOptions,
Expand Down
2 changes: 2 additions & 0 deletions packages/solid-query/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

// Re-export core
export * from '@tanstack/query-core'

Expand Down
2 changes: 2 additions & 0 deletions packages/solid-query/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

import type { Context } from 'solid-js'
import type {
QueryClient,
Expand Down
2 changes: 2 additions & 0 deletions packages/vue-query/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

import type {
QueryKey,
QueryObserverOptions,
Expand Down

0 comments on commit f715b30

Please sign in to comment.