Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @antfu/eslint-config to v4 - abandoned #785

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"gen:vue-apis": "tsx ./scripts/vue-api-manifest.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@antfu/eslint-config": "^4.1.0",
"@antfu/ni": "^23.2.0",
"@arethetypeswrong/cli": "^0.17.0",
"@clack/prompts": "^0.8.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-kit/src/core/component/state/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function processState(instance: VueAppInstance) {
const props = type?.props
const getters
= type.vuex
&& type.vuex.getters
&& type.vuex.getters
const computedDefs = type.computed

const data = {
Expand Down
4 changes: 2 additions & 2 deletions packages/devtools-kit/src/messaging/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function setRpcClientToGlobal<R, L>(rpc: BirpcReturn<R, L>) {
target.__VUE_DEVTOOLS_KIT_RPC_CLIENT__ = rpc
}

export function setRpcServerToGlobal<R, L >(rpc: BirpcGroup<R, L>) {
export function setRpcServerToGlobal<R, L>(rpc: BirpcGroup<R, L>) {
target.__VUE_DEVTOOLS_KIT_RPC_SERVER__ = rpc
}

Expand All @@ -66,7 +66,7 @@ export function setViteRpcClientToGlobal<R, L>(rpc: BirpcReturn<R, L>) {
target.__VUE_DEVTOOLS_KIT_VITE_RPC_CLIENT__ = rpc
}

export function setViteRpcServerToGlobal<R, L >(rpc: BirpcGroup<R, L>) {
export function setViteRpcServerToGlobal<R, L>(rpc: BirpcGroup<R, L>) {
target.__VUE_DEVTOOLS_KIT_VITE_RPC_SERVER__ = rpc
}

Expand Down
3 changes: 2 additions & 1 deletion packages/ui/src/composables/theme.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useColorMode, type UseColorModeOptions } from '@vueuse/core'
import type { UseColorModeOptions } from '@vueuse/core'
import { useColorMode } from '@vueuse/core'
import { computed } from 'vue'

export const THEME_KEY = '__vue-devtools-theme__'
Expand Down
Loading
Loading