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

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

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