Skip to content

Commit 2f79a3d

Browse files
committedDec 6, 2024··
chore: up exports
1 parent 25d49be commit 2f79a3d

File tree

6 files changed

+15
-1
lines changed

6 files changed

+15
-1
lines changed
 

‎.changeset/slow-kangaroos-fail.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"wagmi": patch
3+
"@wagmi/vue": patch
4+
---
5+
6+
Exported `injected` and `mock`.

‎packages/react/src/exports/index.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ test('exports', () => {
7676
"Hydrate",
7777
"createConfig",
7878
"createConnector",
79+
"injected",
80+
"mock",
7981
"ChainNotConfiguredError",
8082
"ConnectorAlreadyConnectedError",
8183
"ConnectorNotFoundError",

‎packages/react/src/exports/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,8 @@ export {
406406
type ConnectorEventMap,
407407
type CreateConnectorFn,
408408
createConnector,
409+
injected,
410+
mock,
409411
// Errors
410412
type ChainNotConfiguredErrorType,
411413
ChainNotConfiguredError,

‎packages/vue/src/exports/index.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ test('exports', () => {
4444
"useWriteContract",
4545
"createConfig",
4646
"createConnector",
47+
"injected",
48+
"mock",
4749
"ChainNotConfiguredError",
4850
"ConnectorAlreadyConnectedError",
4951
"ConnectorNotFoundError",

‎packages/vue/src/exports/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@ export {
230230
type ConnectorEventMap,
231231
type CreateConnectorFn,
232232
createConnector,
233+
injected,
234+
mock,
233235
// Errors
234236
type ChainNotConfiguredErrorType,
235237
ChainNotConfiguredError,

‎site/.vitepress/theme/components/HomePage.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script setup lang="ts">
22
import type DefaultTheme from 'vitepress/theme'
33
import { VPButton, VPSponsors, VPTeamMembers } from 'vitepress/theme'
4-
import { useSponsors } from '../composables/useSponsors'
54
import { farcasterIcon } from '../../constants'
5+
import { useSponsors } from '../composables/useSponsors'
66
77
const { data: sponsors } = useSponsors()
88

0 commit comments

Comments
 (0)
Please sign in to comment.