Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(solid): Export Provider from the entry (#3670)

authored by

Iha Shin (신의하) and committed by
GitHub
102cc0d7 b039ae58

+8 -2
+5
.changeset/chilly-cows-brake.md
··· 1 + --- 2 + '@urql/solid': patch 3 + --- 4 + 5 + Export Provider from the entry
+2 -1
package.json
··· 113 113 "dependencies": { 114 114 "@actions/github": "^5.1.1", 115 115 "node-fetch": "^3.3.1" 116 - } 116 + }, 117 + "packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1" 117 118 }
+1 -1
packages/solid-urql/src/index.ts
··· 1 1 export * from '@urql/core'; 2 2 3 3 export { type UseClient } from './context'; 4 - export { useClient } from './context'; 4 + export { useClient, Provider } from './context'; 5 5 6 6 export { 7 7 type CreateMutationState,